HaneD
Forum Replies Created
-
Is there away of resolving this without having to redo all my projects?
Forum: Plugins
In reply to: [Meta Box] how to get plupload_image order?I got mine sorted by using
<php //Using this to get the post ID so that I can group the images with their own entry since I display multiple entries on one page $post_id = get_post_meta(get_the_ID(), 'equipment_images', false); $excagriqID = get_the_ID(); $images = rwmb_meta( 'equipment_images','type=image'); echo "<div class='equipment-images'>"; foreach ( $images as $image ) { echo "<div class='equipment-image'><a href='{$image['full_url']}' title='{$image['title']}' rel='". $excagriqID ."' class='thickbox'><img src='{$image['url']}' width='{$image['width']}' height='{$image['height']}' alt='{$image['alt']}' /></a></div>"; } ?>
Forum: Plugins
In reply to: [Meta Box] how to get plupload_image order?Have you found a solution to your question? I’m looking for something similar.
Here is a link to the developers forum that seems to request the same with a solution that I cant seem to implement
Forum: Plugins
In reply to: [Squelch Tabs and Accordions Shortcodes] Overwrite css optionSorry miss understanding between the administrator and myself.
Forum: Fixing WordPress
In reply to: wp_dropdown_categories – is this possible?Dont know if this will help but check out my question and the solution that I found. It was for custom taxonomies but I think you would be able to get it to work with categories.
My final working code can be found here
Forum: Fixing WordPress
In reply to: Taxonomy Drop Down with hierarchical view using $termsI can kick myself, been struggling for 2 days and all that I had to do to make the wp_dropdown_categories option work is change the name to the same value as the taxonomy.
thanks this will do.
Now I also learned something new ??
Sorry I’m not to clued up about filters how can I add this to my themes function.php so the edit that I make wont get overridden when you update the plugin.
Forum: Plugins
In reply to: [VoucherPress] VoucherPress PDF/Voucher "not found" when clicking linkI found the fix. All the editable fields must filled in. Take a look here
Forum: Plugins
In reply to: [VoucherPress] VoucherPress PDF/Voucher "not found" when clicking linkWere you able to solve this? I have the same problem, the plugin works 100% on my local test site but I keep getting a “Sorry, that item was not found” error on the live site
Thanks
HanèSorry here is the link to the code in pastebin https://pastebin.com/bnqQm1qy
Forum: Fixing WordPress
In reply to: Connecting a CPT post to a taxonomy archive pageDo you have this
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
in your archives file?Forum: Everything else WordPress
In reply to: Directory Traversal AttackIt seems more plugins use it then themes.
Forum: Everything else WordPress
In reply to: Directory Traversal AttackIt is pain, my inbox is full of warnings due to this. I’m busy updating all my sites and making sure it is not used. Is it only templates that use this or are there plugins as well?
Forum: Everything else WordPress
In reply to: Directory Traversal AttackIs it updated with WordPress or do I have to do it manually?