venfrancis
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast doesn't work with Visual Composer for WPAny updates for this?
Forum: Plugins
In reply to: [Protect WP Admin] Cannot log in after URL changedthe developer needs to check on this as migrating to a production site will cause a huge problem if you applied the changes already during the development phase.
Anyway, for you guys having this problem. You should rename your plugin through FTP to something like protect-wp-admin1 and you’ll be able to login back to the original wordpress login. /wp-admin or /wp-login.php ….renaming the plugin will cause wordpress to disable it automatically to prevent problems. You should be receiving an error about this when you go to your dashboard > plugins.
If you’re using duplicator or some web cloning plugins, you need to clear your cache first, save the permalinks, etc.
if you want to use this again, just rename the plugin to its original folder name(protect-wp-admin) via the FTP again.
Hope it helps.
Regards
@wfmattr , it’s also appearing on our website and we’re quite unsure if the scan is running while we did the upgrade.
Any workaround that we can do without uninstalling the plugin? Thanks
Hello Scott,
First, great plugin. We will be much willing to pay for the plugin price if it is working with the dynamic content such as job manager, contact, etc.
Thanks!
Warmest,
VenForum: Plugins
In reply to: Adminimize Plugin: error arrayhey all,
found this link: https://re13b.net/wordpress/333.php
It’s in Japanese, better translate it in chrome to english.
Don’t forget to backup your files.
Forum: Fixing WordPress
In reply to: Seo yoast plugin doesn't work with muffingroup bethemeThanks for pointing that out. But i need to add more to the answer…
When you’re editing your homepage / any other page’s SEO settings in the Yoast panel, say you’re using Muffin Builder, you need to click the Builder >> SEO besides the Visual and Text tab. This will copy all the texts from and scraping off the muffin codes and pasting it to the Content Editor of WordPress. This will enable Yoast to detect the content and score it.
You also need to turn On the “Hide the Content” so you wont be seeing these scraped texts in your homepage.
Hope that helps.
Cheers!
Forum: Plugins
In reply to: [WooCommerce Category Banner] Banner on product pages?you just have to call in the function in your product pages.
wcb_show_category_banner();
Forum: Plugins
In reply to: [WooCommerce Category Banner] Not working on 4.0.1It’s working in 4.1.1 add this in your function.php
//show featured image product category catalogue add_action( 'woocommerce_archive_description', 'woocommerce_category_image', 2 ); function woocommerce_category_image() { if ( is_product_category() ){ wcb_show_category_banner(); } }
but there’s a bug going on in the dashboard page when you try to add banner, it sometimes overlaps with the category thumbnail. So you need to save the thumbnail first then the banner.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 – Redirect Code NOT WorkingHi Guys, need help here.
Same situation. Here’s the link:
https://www.fmi.com.ph/business-analysis-defining-organizational-requirements-and-identifying-effective-solutions-event-registration/
and should redirected to :
https://www.fmi.com.ph/registration-successful/
It is not redirecting to the pointed url. I also checked the console in chrome but no errors.
Please help. Thank you!
Forum: Fixing WordPress
In reply to: Show something if user meta is empty//first you need to get the current author of the page if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif; //then your condition if(!empty($curauth->website)){ //shows the website }
cheers
Forum: Fixing WordPress
In reply to: Featured Posts Don't Show After Deleting Static PagexD ooops. ok so please re-state your problem regarding that.
Forum: Fixing WordPress
In reply to: Featured Posts Don't Show After Deleting Static Pageyea that’s why check it if it’s still pointed on your deleted static page before. There’s two settings under Front Page Display. Your latest posts and A static page. So make sure you choose “Your Latest Posts”
Forum: Fixing WordPress
In reply to: How to align center main navigation menusince the parent div container of the main menu(div .menu) of Twenty Ten has a fix width of 928px. Try giving the UL under it a min-width to make it shorter and centered it with
margin-left:auto;
andmargin-right:auto;
div.menu{} //dont change this anymore div.menu ul{ min-width: 40%; //will get the 40% of 928px of parent element and grows according to child LIs total width margin-left: auto; margin-right:auto; }
didn’t tested it but it should work according to your scenario ??
can you state the error it shows.
Forum: Fixing WordPress
In reply to: Featured Posts Don't Show After Deleting Static Pagehi, double check the Front Page Display(landing page) inside your Setting>Reading Settings. ??