Natalie MacLees on "[Plugin: Draw Attention] how to extract the "more info -...
Hi there! This is a feature that's on our list to implement in the future, but we don't have a timeline for it at this point. Let me take a look to see if there's a workaround you could implement in...
View ArticleNatalie MacLees on "[Plugin: Draw Attention] how to extract the "more info -...
I took a look and it looks like if you simulate a click on the area it will highlight the hotspot and show the more info. It looks like this: http://pastebin.com/8WSB1phi Where #clickme is the selector...
View Articleniraham on "[Plugin: Draw Attention] how to extract the "more info -...
With a little help from my friend I managed to do it. I just had to set an "id" to each table and the rest did the code: jQuery( "#idOfTheTable" ).on( "click", "tr", function() { var el = jQuery(this);...
View ArticleNatalie MacLees on "[Plugin: Draw Attention] how to extract the "more info -...
Yay - I'm glad you were able to get it working. :-)
View Articleodie2 on "[Plugin: Activity Log] Log custom event"
Hi, I created custom script to daily communicate MySQL. This is filled by someone else and as it's in development, I sometimes need to correct data filled in. Of course I have updated column, but it...
View ArticleYakir Sitbon on "[Plugin: Activity Log] Log custom event"
You can use with aal_insert_log() function. For reference you can see how we are store Posts logs:...
View Articleodie2 on "[Plugin: Activity Log] Log custom event"
Thanks! Works perfectly. Of course for my case may be useful custom link, as ID pointing only to empty page with template, as I am using pretty links for GET requests, but those are just only my dreams...
View ArticleYakir Sitbon on "[Plugin: Activity Log] Log custom event"
You can create new Type and store your log there..
View Articleodie2 on "[Plugin: Activity Log] Log custom event"
Awesome! Love this plugin ^^ add_filter( 'aal_table_list_column_description', 'replacements_activity', 10, 2 ); function replacements_activity( $return, $item ) { if ( ! empty( $item->object_id )...
View ArticleClemC on "widgets_init actions not fired from functions.php's child theme"
I need to add new sidebars for using them accordingly on different pages throughout my shop. I use Woocommerce and my own Storefront child theme. This is a snippet of what is in functions.php file of...
View Articlestephencottontail on "widgets_init actions not fired from functions.php's...
You need to change the priority on init_storefront_child to 0 so it fires after all the functions have been hooked but before the hooks actually execute: add_action( 'init', 'init_storefront_child', 0 );
View ArticleClemC on "widgets_init actions not fired from functions.php's child theme"
That's the solution, thank you !
View Articlespeedy_snail on "How to deal with a form being posted?"
I'm writing a plugin to search for property rentals. I have created a page with the search form in it (min / max price, number of bedrooms etc). The page works this way: * The page has a shortcode in...
View Articlecatacaustic on "How to deal with a form being posted?"
If the form is used for filtering results, which it sounds like it is, then I'd set the action to the current page, or you can leave it as action="" and your browser will submti it to the current page...
View Articlespeedy_snail on "How to deal with a form being posted?"
Good idea about bookmarking refined searches (due to $_GET). The only issue that remains is that if the page in the Wordpress page editor looks like this: Search for rented property using the form...
View Articlecatacaustic on "How to deal with a form being posted?"
How to "fix" it will depend on how much you can modify the code that processes that shortcode. If it's your own cod,e then just add the title in where it needs to go dependant on what action it's...
View Articlespeedy_snail on "How to deal with a form being posted?"
I had a sudden epiphany while watching Netflix! Well there's a first time for anything ;-) The search page can have a shortcode that displays the search form (<form> etc). The action attribute in...
View Articlewebninjrdesign on "Programmatically Disable Cron in functions.php"
Hey, I build custom themes for WP and I setup server side cron jobs. I've been disabling cron in the wp-config using... define('DISABLE_WP_CRON', 'true'); However I would prefer to do this in the...
View ArticleRafrafnat on "[Plugin: Contact Form DB] Custom form not working wen using any...
Hi, First of all - plugin is incedibly usefull a made in great way. I was using Contact Form DB before, but never got this problem before. I am trying to make custom html for and for testing I am using...
View Article