narola
Forum Replies Created
-
Hello there,
Have you got a chance to review mine issue comment?
Looking forward to hearing back from you.
Thanks
Actually my issue is as below:
Please check this screenshot : https://prntscr.com/dcnfuh
This is custom field on the form. but when clicks on “Register” button, it’s not getting saved into wp_users table. in table field is “business_type”.
But selected value of this radio buttons is not getting saved into database. What would be the issue?Thanks for your reply.
Actually, I already tried pre_get_posts solution but it’s not working with the plug-in query. When I checked the $query object, it takes “post” as default post_type in queried object.
I implemented following solution to show the custom post type post in the posts.php template :
<?php $query_posts = $ultimatemember->query->make(‘post_type[]=event&post_type[]=sale&post_type[]=offer&posts_per_page=100&offset=0&author=’ . um_user(‘ID’) ); ?>
It’s working great. BUT, in this, there is one issue when user clicks on [LOAD MORE] button.
Below is the [LOAD MORE] button link HTML:
<a href="#" class="um-ajax-paginate um-button" data-hook="um_load_posts" data-args="<strong>post</strong>,10,10,<?php echo um_user('ID'); ?>"><?php _e('load more posts','ultimatemember'); ?></a>
Now as per the doc, I need to change “post” posttype with my custom post types (‘event’, ‘sale’, ‘offer’) in the “data-args” attribute.
So how can I do this to show custom posts on [LOAD MORE]?
Looking forward to your reply!
Thanks.
Forum: Plugins
In reply to: [WooCommerce] how to add text box attribute on product pageSo how can I add the textbox as product attribute. I need to show the textbox on product page.
Forum: Plugins
In reply to: [WooCommerce] I want ON-HOLD status for BACS by default for ordersHello Mike,
Thanks for the reply.
Yeah I know that BACS already uses ON-HOLD for the orders. and also checked the code and plug-ins but not found anything that causes this issue.
Today I tested again order status by placing an order with BACS payment gateway and instead of going to “ON-HOLD”, it is dropped in “PROCESSING” orders list. I want ON-HOLD status by default for all the orders which are placing by BACS .
Could you please let me know if there is any trick to do so? Also if there is any setting in WooCommerce for this.
I am using latest version of WooCommerce (2.5.5)Looking forward to your reply.
Thank you.