wrip
Forum Replies Created
-
I am trying to re-order the cross-sell items.
Forum: Fixing WordPress
In reply to: How to change label inside a plugin?Yes, translate file works. Thanks.
I’ve found a solution for this. It was all part of the language files. I created new language files woocommerce-pdf-invoices-en_US.mo and woocommerce-pdf-invoices-en_US.po through Poedit and placed them inside the lang folder. I could just replace the original text with whatever I wanted in those files.
I have one issue with this. When I update the plugin, these 2 language files are automatically removed. How do I override these language files?
Forum: Fixing WordPress
In reply to: How to output price without currency using wc_price?Oops, didn’t realise. Thanks James.
The question is now here: https://wordpress.org/support/topic/how-to-output-price-without-currency-using-wc_price-1?replies=1
I already left you a feedback back in August I think 🙂
That’s all good. I checked again. I don’t know what I did wrong before. I was trying to view the PDF from My Accounts page. I just had to add target=”_blank” in my-orders.php inside WooCommerce template. I’ve managed to get it right. It’s working fine now. Very useful plugin, btw.
Thank you. Will give this a try.
Forum: Plugins
In reply to: [WooCommerce] Cannot remove Upsell section from the product page@royho, clearing cache does not help.
I also tried changing the positions of upsell and tabs sections:
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 10 ); remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 15 );The above code adds upsell section followed by tabs followed by another upsell section. That means
remove_actionfor upsell isn’t working. Looks like I have to use CSS to hide the upsell section.I figured this out. It was actually the issue in my functions.php.
On Twenty12 theme, there is nothing to fire up the lightbox. The text “Be the first one to add a comment” is not clickable and ratings are not shown either.
How do I enable the same thing on my custom theme? Is there a piece of script or a function to call the reviews section that I can add in my theme?
The site I am working on is not live yet. I am currently working on a local copy.
Forum: Plugins
In reply to: [WooCommerce Product Slider] Pro version image crop issue.I received a support response through email from the plugin developer. So please disregard this post. I thought my initial email did not go through. Thanks.
Forum: Plugins
In reply to: [Facebook Comments] Comments not showing on one particular pageHi Alex,
Is there a way I can email you? I don’t want to post a client URL here.Forum: Plugins
In reply to: [Facebook Comments] Comments not showing on one particular pageSorry I don’t think this has been resolved 🙂
I’ve just noticed this has been marked resolved. I am still having the issue.Forum: Plugins
In reply to: [Facebook Comments] Comments not showing on one particular pageI am using custom structure in the permalink, like this:
https://mysitename.com/%category%/%postname%/All posts within that category are correctly showing the comments except on this particular page.
I am not using a shortcode. The comments display on all posts.
Forum: Plugins
In reply to: [WooCommerce] Filter & Admin Search Don't work@nickoonce, your solution works.
After I added !is_admin() in my SearchFilter() function, it started working.Thanks for sharing!