urre
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF Fold Flexible Content] The Plugin does not workForum: Plugins
In reply to: [ACF Fold Flexible Content] Doesn't add DashiconsForum: Plugins
In reply to: [ACF Fold Flexible Content] The Plugin does not workHi, this has been fixed in the new version. Please check it out!
Forum: Plugins
In reply to: [ACF Fold Flexible Content] The Plugin does not workHi, this has been fixed in the new version. Please check it out!
Forum: Plugins
In reply to: [Update from Bottom] Update from Bottom doesn't workHi,
You can’t see these buttons when editing pages and posts?
https://dl.dropboxusercontent.com/u/1162759/dump_2014-10-24_07-49-43.png
Hi,
Just saw this strange bug, did you ever solve this or got a reply from the plugin author?
Any hints are welcome,Thanks!
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Checkbox againany solution?
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Checkbox againyes, that’s what I need
(The img tags worked, but becomes hard to click at)
old question on this topic,
Can i make the checkbox beeing unchecked by default?
Thanks a lot, that worked!
Have two more questions!
1.
I’m wondering if instead of yes/no, displaying a png-image with different graphics on checked/unchecked. Could that be done, for example using jQuery (like .attr(“src”,”graphic.png”); or something?2.
I need to reset all values of a certain custom field, would like to make it a function and run it on a specific php-page. But I don’t know exacly how. This code works, but for some reason it executes even it is on a page that is not used (why?)$querystr = " SELECT wposts.* FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = 'price' AND wpostmeta.meta_value = '50' AND wposts.post_status = 'publish' AND wposts.post_type = 'post' ORDER BY wposts.post_date DESC"; $pageposts = $wpdb->get_results($querystr, OBJECT); ?> <?php if ($pageposts): ?> <?php foreach ($pageposts as $post): ?> <?php setup_postdata($post); ?> <?php update_post_meta($post->ID, 'price', '0'); ?> <?php endforeach; ?> <?php else : ?> <?php endif; ?>
btw, will definitely donate some money to you, the plugin is great!
Thank you for your answers! I will try this now, but the link didn’t work (pointed to https://downloads.www.ads-software.com/plugin/checkbox.zip) ?
maybe if checked > update database with true/false?
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Custom field can edit but data not savedTried with WordPress 2.9.2 instead of 3.0 RC1
Worked! Thanks!
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Custom field can edit but data not savedI placed the call in index.php in the loop. It looked ok in the frontend, i was able to edit it like for example the_title(), but when i edit the value disappears and when something new is added, when i hit Save button it doesn’t save. Old value still present