codemovement.pk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress search order by meta valueThanks for the reply, I want to add to search query, I have different hooks in use. I want to use “posts_orderby” filter if there is any possibility.
Forum: Plugins
In reply to: [WooCommerce] Google analytics keeps tracking Paypal as referrer on purchasesIf this don’t help you then try this link: https://www.optimizesmart.com/tracking-true-referrals-in-google-analytics-when-using-paypal-and-other-payment-gateways/
Forum: Plugins
In reply to: [WooCommerce] Google analytics keeps tracking Paypal as referrer on purchasesHello,
Adding the “?utm_nooverride=1” param only applies to the older version of Google Analytics, and it’s something that is done automatically on our side if you’re using PayPal Express.
What I recommend is to first upgrade to Universal Analytics if you haven’t already, and just follow the instructions given below:There’s a few caveats here:
– After adding “paypal.com” to the Referral Exclusion list, it will take a few hours to go into effect.
– From what we’ve observed, any visitors to your site before adding paypal.com to the exclusion list in GA, will still be attributed as paypal.com in certain reports (such as the ecommerce reports). If you filter on “New Visitors” only you should be able to confirm this.Thanks.
Hello.
First you need customer_id instead of order_id to get the billing information.
echo get_user_meta( $customer_id, $name . 'billing_first_name', true );
Thank you.
Forum: Plugins
In reply to: [Ultimate Reviews] Ultimate Reviews Star rating colorsYou’re welcome.
Forum: Plugins
In reply to: [Ultimate Reviews] Ultimate Reviews Star rating colorsHello!
Please navigate to Reviews and click on Options tab to add this css in custom CSS.
.woocommerce .star-rating span:before{ color: #ffb900; }
Thanks.
Forum: Plugins
In reply to: [resmio button & widget] WP 4.5.3 resmio 1.1 fatal errorresmio button & widget plugin declared function named “custom_mce_button()” is already declared by dine-and-drink theme at at_shortcodes.php, So I suggest to prefixing all functions, so it wouldn’t conflict with other plugins/themes.
thank you
Forum: Plugins
In reply to: [Yoast SEO] Error in Google search console with one part of sitemapYou’re welcome and please mark this issues as resolve.
Hello @mattcincotta,
1. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’96M’);2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 96M ; Maximum amount of memory a script may consume (96MB)3. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 96M4. Talk to your host.
Forum: Plugins
In reply to: [Yoast SEO] Error in Google search console with one part of sitemapCheck your themes functions.php file and other plugins for trailing whitespace (or opening whitespace) outside of the <?php and ?> tags. I think something is outputting whitespace before the SEO plugin has a chance to display the sitemap and that is the most likely cause.
Forum: Plugins
In reply to: [Yoast SEO] Custom sitemap format questionHello.
I am not sure about solution for issue but I am sure that this would help you to understand the importance of different sitemap URLs.
Thank you
Forum: Plugins
In reply to: [Yoast SEO] Can't change canonical urlI don’t think Yoast SEO have any such option there. Please read this as it guide you that we don’t need to add canonical links on a paginated page.
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO Only English posts not showing in Blog pageHello Roberto,
I don’t think this Yoast SEO issue but if you still think then please deactivate the WordPress SEO plugin.
Otherwise I suggest to deactivate the polylang plugin to debug the issue.
thank you
Forum: Plugins
In reply to: [Yoast SEO] XML Parsing Error: XML or text declaration not at start of entityCheck your themes functions.php file and other plugins for trailing whitespace (or opening whitespace) outside of the <?php and ?> tags. I think something is outputting whitespace before the SEO plugin has a chance to display the sitemap and that is the most likely cause.