zecka1213
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Forms for ACF] Ajax submit – Success message Keep formFinally got it with af/form/ajax/submission javascript action located on advanced-forms/assets/js/forms.js into onSuccess method
(It would be nice to add this javascript action in the documentation)
acf.addAction('af/form/ajax/submission', (data, form) => { // Reset data.type to prevet af perform success message injection onSuccess // check --> advanced-forms/assets/js/forms.js data.type = false const $form = $('#'+form.key); // Insert success message right before the form DOM element $(data.success_message).insertBefore($form) })
- This reply was modified 1 year, 11 months ago by zecka1213.
Forum: Plugins
In reply to: [WooCommerce] Adding Custom Field to Additional InformationTo add custom field in additionnal information table you can use woocommerce_display_product_attributes filter
function yourprefix_woocommerce_display_product_attributes($product_attributes, $product){ $product_attributes['customfield'] = [ 'label' => __('custom', 'text-domain'), 'value' => get_post_meta($product->get_ID(), 'customfield', true), ]; return $product_attributes; } add_filter('woocommerce_display_product_attributes', 'yourprefix_woocommerce_display_product_attributes', 10, 2);
- This reply was modified 4 years, 10 months ago by zecka1213.
Forum: Plugins
In reply to: [Flow-Flow Social Feed Stream] Instagram Feed Error@zzanna Thank’s it’s working !!!
Forum: Plugins
In reply to: [WordPress Social Login] Open in a popupOkay finally i found the solution:
Go to wp-admin:
Settings ->WP Social Login -> Widget -> Advanced Settings -> Authentication display
And set Pop UpForum: Everything else WordPress
In reply to: Solution for searching Plugin specific support threadAwesome thank you
Forum: Plugins
In reply to: [WordPress Social Login] Open in a popupNo one ?
Forum: Plugins
In reply to: [YITH WooCommerce PDF Invoice and Shipping List] Invoice theme customizationand now is it possible ?
Forum: Plugins
In reply to: [Stock Ticker] Can't save plugin option1. I can’t change anythig, all is reset to default
2. i try to do that: %price% %change%I temporarily edit stock-ticker.php and change the $defaults array …
But I realy hope to have an other solution.
Forum: Plugins
In reply to: [Stock Ticker] auto refresh functionI’m also interesting about auto refresh
Forum: Plugins
In reply to: [Stock Ticker] Can't save plugin option1. WordPress 4.4.2
2. Stock Ticker Version 0.1.7
3. I try to modify Advanced Settings -> Value template
4. PHP Version 5.6.7Actually i have the website in my computer on mamp, but i can put the website online and give you an access if you need.
Forum: Themes and Templates
In reply to: Removing company Logo in Layout Builder Themeadd this to your styles.css
#colophon{
display: none;
}Forum: Themes and Templates
In reply to: [Rider] Theme menuMaybe on your theme setting.
Otherwise you can force the menu to stay et position absolute with a css rule
.scroll-header{
position: absolute !important;
}Forum: Plugins
In reply to: [RICG Responsive Images] Different ratioThank you for the response, i’m gonna use this !
Forum: Plugins
In reply to: A lot of variation, what is the best practice ?No one have a better solution ?
Do you find an issue ? I have the same probleme.