Quantcast
Channel: Threads Archive - SiteOrigin
Viewing all articles
Browse latest Browse all 321

Technical changes cause issue with page builder since update 2.29.17 for shortcodes

$
0
0

The issue is the following:

When loading page content on another page via a shortcode the HTML tags are outputted as content instead of paragraphs and images see issue on our test environment (newest version of the page builder is active along with the widget bundle):

https://ibb.co/pdqLFWk

https://scdiscoveries700.e.wpstage.net/about/
HTTP User: blogvault
HTTP Pass: 7efc4f77

Scroll a little bit down and click on one of these team members to see the issue.
https://ibb.co/rbCnhFt

When you check the live website, which still uses the previous version this issue doesn’t occur:

https://www.scdiscoveries.com/about/

Scroll a little bit down and click on one of these team members to compare with the updated plugin above.
https://ibb.co/rbCnhFt

I tried to disable all the other plugins, but came to the conclusion this issue is caused by the newest version 2.29.17 its changes.

Website specs:
Php version 8.0
Theme Vantage

The custom shortcode in question:

funtions.php

// Team part
function team_part($atts) {
$default = array( 'id' => '', );
$id = shortcode_atts($default, $atts);
$number = $id['id'];
$page = get_post($number);

return do_shortcode($page->post_content);
}
add_shortcode('team', 'team_part');

Shortcode (used inside the tab widget from the widget bundle):
https://ibb.co/cYcdt9z

I’m looking for a solution to be able to update the plugin, I don’t really know why HTML is being stripped like

and tags.

Much appreciated!

Sidenote: We made the popups like this with CSS, we added the content on a different pages so the member sections can be loaded into a tab via shortcode and on different pages managed on one page. The popup is done in CSS to increase the performance and lower the need of .js.

The post Technical changes cause issue with page builder since update 2.29.17 for shortcodes appeared first on SiteOrigin.


Viewing all articles
Browse latest Browse all 321

Trending Articles