sundios
Forum Replies Created
-
Hi. I have the same issue. I saw that today at 9:00 am Jetpack was updated to 9.5 and suddenly I can’t see the buy shipping label at the top of my orders.
I uninstall it and also install it again tried connecting again. It went successfully but still seeing the message above to acitvate
Forum: Plugins
In reply to: [Easing Slider] Slider problem with responsiveHi Yanwhite,
I am seeing the same issue after updating to WP 4.7.1.
But if you add:
.easingslider-wrapper-outer {
width: 100% !important;
}to your theme css will fix it.
Forum: Plugins
In reply to: [Easing Slider] Slider problem with responsiveHi,
I solved my problem by adding the following to my CSS.
.easingslider-wrapper-outer{
width: 100% !important;
}It might be an issue only with my theme. But you can try that and see if it works.
Forum: Plugins
In reply to: [Redirection] Great plugin. Question and recommendationHey thanks for the reply.
When going to Modules and hovering wordpress it doesn’t show up any export options. I currently have the latest version of this plugin and i have admin access to the cms.
Any other way i could export? thanks?
Forum: Fixing WordPress
In reply to: link rel='shortlinkYou should remove it if you don’t want to confuse Search engine Bots.
You can do it manually by adding this to your functions.php
remove_action( ‘wp_head’, ‘wp_shortlink_wp_head’, 10, 0 );
remove_action( ‘template_redirect’, ‘wp_shortlink_header’, 11, 0 );
remove_action( ‘wp_head’, ‘wlwmanifest_link’ );Thanks