iahnn
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 3.6.1 Breaks wc_get_product_id_by_skuThis breaks our website. wc_get_product_id_by_sku returns 0 with sku added using
update_post_meta($post_id, '_sku', $product_data['sku']);Is there any new way to add sku other than update_post_meta? Thanks in advance.
Forum: Plugins
In reply to: [DW Question & Answer] Loop Error in PHP7This was fixed in the current release.
Forum: Hacks
In reply to: How to pass value in wordpress urlbcworkz is right. The script and error you have shown is very irrelevant or no connection with your question. Please start a new thread with proper question.
Forum: Hacks
In reply to: How to pass value in wordpress urlI dont really understand your question. Its better to show how you define “PATHTOPLUGIN” or are you having trouble to get the correct url?
Forum: Themes and Templates
In reply to: [Responsive] make home white background another coloryes i know that i wrote some of responsive themes myself and i understand what you are saying WPyogi. Thank you for that.
Forum: Themes and Templates
In reply to: [Responsive] make home white background another colorif you are downloading updates of your theme frequently then you should be making backup for your customized theme files though updating theme does not make any sense to me.. I suggest to make a separate css stylesheet for your customization… im glad it helps.
Forum: Themes and Templates
In reply to: [Responsive] make home white background another coloropen your theme’s style.css and try to change the #featured background color to something else…
Forum: Hacks
In reply to: How to pass value in wordpress url$_POST[] and &_GET[] perfectly works in wordpress. I dont find any Problem with that. Make sure to write it in a template and not in a post, or within any script where php scripts can fire.
it might be a cause of your theme’s canonical redirect issue. If you are good in programming, then i think you can fix the issue. But if you cant, you better switch to another theme.
Try the default permalink. If it didnt work, there must be an issue with your theme. Try switching to a different theme.
Forum: Plugins
In reply to: [Email newsletter] [Plugin: Email newsletter] Change Submit to Imagejust add a style above your form, put a class on it and put border:0 !important;
example
<style type="text/css"> .button_css{ border:0 !important; } </style><input class=”button_css” …
Forum: Hacks
In reply to: How to pass value in wordpress urlsame as me.. i am passing session data and post with no problems…
Forum: Hacks
In reply to: How to pass value in wordpress urlyes you can… you can simply do like this http://www.yoursite.com/yourpost/?update=true&other=1 then parse that into your function or within the current page…