collinsavenue
Forum Replies Created
-
Thanks, I contacted the code creator and he was kind enough to update the script.
Thank you so much, works perfect ??
Forum: Plugins
In reply to: [Pinpoint Booking System - #1 WordPress Booking Plugin] Payment GatewaysAh nevermind, found the documentation, works now. Thanks.
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] Installation /Activation errorJep same here, 500 error.
Using 4.9.8 WPForum: Plugins
In reply to: [YITH WooCommerce Social Login] Keeps asking FB password to continueNvevermind, found it, i had Force Web OAuth Reauthentication turned on.
Thanks for a great plugin.Forum: Plugins
In reply to: [Yoast SEO] Why Yoast display canonical url metadata in facebook?1. I have https://www.mydomain.com that has the canonical field filled with https://www.google.com.
2. When I paste https://www.mydomain.com into facebook, it fetches https://www.google.com metadata and links to there.In conclusion, when I share my website on facebook, it displays canonical website information and links there, not to my original link that was shared.
Forum: Plugins
In reply to: [Yoast SEO] Why Yoast display canonical url metadata in facebook?Can you try yourself. Create a page, then add some random url into canonical and then scrape the first url in fb debugger, does it get the canonical url or the first one u originally scraped?
Forum: Plugins
In reply to: [Yoast SEO] Why Yoast display canonical url metadata in facebook?Hi Michael, sure.
I have a page X1 and canonical url points to X2 now when i share the first (X1) url, it shows second’s (X2) url metadata and info in facebook even if u scrape it again.
Forum: Plugins
In reply to: [Yoast SEO] Bulk noindex for some pages, possible?Oh, man. Well, thanks anyway.
Gonna be “fun” going over 430 pages manually.Forum: Fixing WordPress
In reply to: Can’t select blog page template.Thanks again for your help.
- This reply was modified 7 years, 7 months ago by collinsavenue.
Forum: Fixing WordPress
In reply to: Can’t select blog page template.Ok, thanks. I got it working by editing index.php in child theme. Now my content shows up but how can I edit this code to get title in <h1> tags?
<?php $id=74; $post = get_post($id); $title = apply_filters('the_title', $post->post_title); echo $title; $content = apply_filters('the_content', $post->post_content); echo $content; ?>
Forum: Plugins
In reply to: [WordPress Social Login] Get phone field from facebook?To simplify my question:
If<input type="text" name="wsl_current_provider" id="wsl_current_provider" value="<?php echo esc_attr( get_the_author_meta( 'wsl_current_provider', $user->ID ) ); ?>" class="regular-text" />
and
<input type="text" name="wsl_current_user_image" id="wsl_current_user_image" value="<?php echo esc_attr( get_the_author_meta( 'wsl_current_user_image', $user->ID ) ); ?>" class="regular-text" />
work fine, then why can’t I get gender from wp_wslusersprofiles table? How can I make it show up under user’s metadata?Forum: Plugins
In reply to: [WordPress Social Login] Get phone field from facebook?I’m not really good with php but after digging in db I fount there is some more data in wp_wslusersprofiles like gender and etc.
If my code is this:
<input type="text" name="country" id="country" value="<?php echo esc_attr( get_the_author_meta( 'country', $user->ID ) ); ?>" class="regular-text" /><br />
Then how do I call gender from wsluserprofiles or how can I make that table as user meta?
Also is there any reason my date of birth and some other stuff that I have made public, don’t get saved into db?
Forum: Themes and Templates
In reply to: [Storefront] page titleForum: Plugins
In reply to: [User Role Editor] Recover WPML menu?Nevermind, this nippet fixed it.
function wpmlsupp_1706_reset_wpml_capabilities() { if ( function_exists( 'icl_enable_capabilities' ) ) { icl_enable_capabilities(); } } add_action( 'shutdown', 'wpmlsupp_1706_reset_wpml_capabilities' );
But yea man, put some bells and whistles on that popup window with double confirmation or something.