oterox
Forum Replies Created
-
Same happens to me, using it as a shortcode inside elementor
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Populate select field from codeThank you Harish!!!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Populate select field from codeJust need to know if there’s any hook/filter to do it ??
Forum: Plugins
In reply to: [WP Store Locator] Adding hours to wpsl_listing_templateGreat, it works very good.
What i don’t know is how to modify the values. For example, compare actual hour with opening hours and show if it’s closed or open, or show how many minutes until close.
Any advice?Forum: Plugins
In reply to: [Stream] Create custom logsthk Luke,
i’ll try to create a connector for logging the custom events, lets see i can make it work ??
I’m on WordPress slack too
Best.
Forum: Plugins
In reply to: [Stream] Create custom logsIs there any documentation to create that integration? or should i have to figure out how to do it?
Thank you very much Luke.
Forum: Plugins
In reply to: [Stream] Create custom logswhat i mean is a custom logger like:
Custom post type, with ACF field “Notes”
When someone edit a “note” i ONLY want to log that someone has edited a “note” and the new content for the fieldForum: Plugins
In reply to: [W3 Total Cache] Activation on multisiteSame problem here, any solution?
Forum: Plugins
In reply to: [WP Better Attachments] Featured image being added to attachments listi’ve modified the get_post_attachments function args to exclude it:
$get_posts_args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_parent' => $post->ID, 'order' => 'ASC', 'orderby' => 'menu_order', 'exclude' => get_post_thumbnail_id($post->ID), );
Forum: Fixing WordPress
In reply to: Custom post type fields showing in page form??The code for the custom fields:
add_action("admin_init", "km_admin_boxes_init"); function km_admin_boxes_init(){ add_meta_box("km_product_meta", "Product data", "km_product_meta", "product", "normal", "low"); } function km_product_meta() { global $post; $custom = get_post_custom($post->ID); $kmprice = $custom["kmprice"][0]; ?> <p><label>Price:</label><br /> <input name="kmprice" value="<?php echo $kmprice; ?>" />