clickmac
Forum Replies Created
-
I am requesting this, to make another plugin compatible with yours, which will bring more awareness to the your plugin.
Perhaps saving the values in an array and outputting the data can work?
Then perhaps, make an filter where I can hook into it and add new fields?Just would like to add new fields without recreating a whole different template as there are many fields to be added, to much…
Is there another way.
If the hook could also pass the $order. That will be great.
Forum: Plugins
In reply to: [WooCommerce] Not doing ajax Order Review – causing errors?? Got is working. Thanks guys
Forum: Plugins
In reply to: [WooCommerce] Not doing ajax Order Review – causing errorsThe change from since 2.1.8 at changeset is currently giving us problems as we would need ajax to load at this div.
Is it possible to revert back to allowing ajax at this div?
If not, can you all please provide an alternative for the refreshing after sending values to the database using ajax?
Thanks.
Forum: Plugins
In reply to: [Replace Featured Image with Video] doesnt work for postPerhaps providing your theme name and url can be of help.
Forum: Plugins
In reply to: [WooCommerce] Customizing WooCommerce checkout pageyou can do something like
$fields['billing']['billing_options'] = array( 'label' => __('Options', 'woocommerce'), 'placeholder' => _x('', 'placeholder', 'woocommerce'), 'required' => false, 'clear' => false, 'type' => 'select', 'class' => array('own-css-name'), 'options' => array( 'option_a' => __('option a', 'woocommerce' ), 'option_b' => __('option b', 'woocommerce' ) ) );
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
This is woocommerce docs for creating options
https://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/Or if its giving trouble you can try a plugin on wordpress for that
https://www.ads-software.com/plugins/woocommerce-checkout-manager/Forum: Plugins
In reply to: [WooCommerce] Woocommerce checkout fields widthyep @oriye you paste it in your functions.php
Forum: Plugins
In reply to: [Infinite-Scroll] Can't figure out CSS Selectorscheers ??
Forum: Plugins
In reply to: [Infinite-Scroll] Can't figure out CSS Selectorssorry, wrong post ,
https://www.ads-software.com/support/topic/fixed-infinite-scroll-on-custom-post-page?replies=12basically, i was trying to give you the post that deals with “enabling infinite scroll to work on custom templates, pages”
in that post, it would should you how to do that, because right now, the selectors suppose to be correct, but because its an custom template / page, infinite scroll will not work, unless you implement that fix.
cheers!
Forum: Plugins
In reply to: [Infinite-Scroll] Can't figure out CSS Selectorstry following this post on wordpress
https://www.ads-software.com/support/topic/doesnt-work-for-post?replies=2Forum: Plugins
In reply to: [Infinite-Scroll] Can't figure out CSS SelectorsSorry i meant
Content selector: #products_grid
Navigation selector: .navigation
Next selector: .navigation .nav-next a
Item selector: .single_grid_productForum: Plugins
In reply to: [Infinite-Scroll] Can't figure out CSS Selectorstry this
Content selector: #products_grid
Navigation selector: .navigation
Next selector: .navigation .nav-nex ta
Item selector: .single_grid_productForum: Plugins
In reply to: [Replace Featured Image with Video] doesnt work for postyeah you can fix that by following this post
it tells you to just open up replace-featured-image-with-video/pt-page-featured-video.php
find this line
function add_fv_box_fields() { add_meta_box( 'docs_list', __( 'Featured Video', 'related-video' ), 'admin_fv_box_html', 'page', 'side' ); }
and replace with
function add_fv_box_fields() { add_meta_box( 'docs_list', __( 'Featured Video', 'related-video' ), 'admin_fv_box_html', 'page', 'side' ); add_meta_box( 'docs_list', __( 'Featured Video', 'related-video' ), 'admin_fv_box_html', 'post', 'side' ); }
then find the single.php file and look for something like this
the_post_thumbnail(‘main’)and replace it with
if(get_post_meta(get_the_ID(), "_related-video", true) != ''){ echo get_post_meta(get_the_ID(), "_related-video", true); }else{ the_post_thumbnail( 'main' ); }
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] Support for admin menufor none buddyPress users, their are forums that are strictly support forums. So marking the topic as a “support topic” when creating a new topic each time would not be needed, since the whole forum is a support forum. Can it be included automatically, so that the user would not need to mark it as a support ticket? Also to be able to turn on or off the functionality via backend.
Forum: Hacks
In reply to: Call Custom Field inside shortcode or php within the templateawesome!