FrancescoCarlucci
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] image showing up as codeI’m glad it helped ??
Looks like the error happens only for new websites. If you already had a map running on website it will continue to work.
Forum: Plugins
In reply to: [Yoast SEO] Google shows wrong meta descriptionForum: Plugins
In reply to: Best plugin for members only access?Hi optima2016,
if you wanna invest your time in the choice of “the way to go” for your project, I strongly recommend to take a look to Chris Lema’s Membership Plugins Review.
https://chrislema.com/best-wordpress-membership-plugin-2015/
You will find 30 very good plugins reviewed with all pros/cons and Chris Lema is a very well known and trusted professional in the WordPress ecosystem!
Good Luck ??
FrancescoForum: Plugins
In reply to: [Yoast SEO] Google shows wrong meta descriptionHi peterfox,
how many days ago did you changed the meta description?
Your code look ok so probably it is just a metter of time.
You could speed up the process by request Google to recrawl your site in Google Webmaster Tools
Best
FrancescoForum: Plugins
In reply to: [WP Job Manager] Job Feed Not ValidatedHi RedNasiL,
from a very first sight it looks an unrecognized entity causing the error, so you can try to avoid the special char (• / ? ) in your site title and re-validate the feed.
Good luck ??
FrancescoForum: Plugins
In reply to: [Force Strong Passwords] False Error on WP 4.3Thanks boogah ??
Forum: Plugins
In reply to: [Yoast SEO] Content AnalysisHi danielfcn,
its quite difficult to help with these few information.
Yoast content analysis should be mainly JavaScript based so probably you can try to debug the page directly within the browser and check for JS errors. (if you are not familiar, take a look here)
Another good try can be to disable one by one all other plugins to check for a plugin conflict.
Good luck ??
FrancescoForum: Plugins
In reply to: [Yoast SEO] Adding sitemaps to Google WebmasterHi lwoods,
Yoast generates a ‘main sitemap’ (usually https://yoursite.com/sitemap_index.xml) that contains all other sitemaps.
Just submit that sitemap to Google Webmaster Tools and all other sitemaps will be submitted!
Hope this helps ??
FrancescoForum: Plugins
In reply to: [Yoast SEO] Homepage focus keyword doesn't appear in URLHi robertjanus,
the Yoast content analysis follow a set of rules to help you formatting everything at its best for SEO.
One of these is: The Focus Keyword should be in the post permalink. So “yellow pad” in your case is the expected behavior.
That said, I can advice this link as a good reading for homepage SEO.
Best
FrancescoForum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] image showing up as codeHi James,
your code seems to return the entire image object.
Probably you can try something like:
<?php $image = get_field('image'); ?> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
Good luck ??
FrancescoForum: Plugins
In reply to: [MultiSite Clone Duplicator] Can't duplicate main websiteHi Lullavie,
probably you only need to type the correct email of an existing user in “New Site – Admin Email”
By the way, I personally think the main site should not be duplicable because it contains some data that should not be shared across the network.
Hope this helps ??
Best
F.Forum: Plugins
In reply to: [Force Strong Passwords] False Error on WP 4.3Yes a patch would be absolutely appreciated!! ??
In the while I have disabled the plugin, I post the code if it can be useful:
add_action('init', function() { remove_action( 'admin_enqueue_scripts', 'slt_fsp_enqueue_force_zxcvbn_script' ); remove_action( 'login_enqueue_scripts', 'slt_fsp_enqueue_force_zxcvbn_script' ); remove_action( 'user_profile_update_errors', 'slt_fsp_validate_profile_update', 0, 3 ); remove_action( 'validate_password_reset', 'slt_fsp_validate_strong_password', 10, 2 ); });