Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
mrant
tagDiv Member

Just run the update on fabtrackr.com and it was ok. After running the update I had to update the plugings and activate manually, but all looking good so far.

mrant
tagDiv Member

Seems that directing the CSS to the non dynamic version of the page does not cause the same issue.

mrant
tagDiv Member

Had a look at the element, column and row and no settings for Mobile view. Have also removed all rows from page and recreated a new row from scratch with same result.

mrant
tagDiv Member

Thank you for the quick response.

For others who may be here looking in the future, what I have done to work around this is to create a shortcode that produces the required PHP output and then popped that shortcode into a page using the Column Text Element.


add_shortcode('myshortcode', 'my_shortcode');

function my_shortcode($atts) {
extract(shortcode_atts(array(
'name' => FALSE
), $atts));

$name = esc_html($atts['name']);

$output = 'Hello '.$name;

return $output;
}

Then within the child theme functions.php file I have added


function my_add_rewrite_rules( $rules ) {
$new_rules = array();
$new_rules['^something/(.*)/?'] = 'index.php?pagename=dynamicpage&x=$matches[1]';
return $new_rules + $rules;

}
add_action('rewrite_rules_array', 'my_add_rewrite_rules');

All pages in the form https://mysite.com/something/xxxx gets rewritten to the page and then the shortcode can pull the x query variable to produce the correct output.

Hope this helps someone.

Ant

mrant
tagDiv Member

Hi Jenny,

Can you post a link to your site?

Ant

mrant
tagDiv Member

Hi,

Nice site.

Have a look at the Page Speed Insights.

I would start with your image sizes, which need compressing. There are some great plugins that will do this for you in wWordpress.

I have had success with EWWW Image Optimizer (Free).

Ant

mrant
tagDiv Member

Waiting patiently, fingers crossed.

Viewing 7 posts - 1 through 7 (of 7 total)