Hadhops
Forum Replies Created
-
Forum: Plugins
In reply to: [Improved Save Button] About mediaHello,
I would like to request this feature also.
Thanks for the great plugin
Forum: Plugins
In reply to: [Search Everything] How do you only search complete words?Hello,
I would like this function also.
Thanks,
Works perfectly! Thanks a lot, for some reason I couldn’t find this in you excellent documentation?
Forum: Plugins
In reply to: [Portfolio Slideshow] V1.10 Adding meta box to custom post typeThat nailed it!
Thanks for the great plugin and support 🙂
Forum: Plugins
In reply to: [Portfolio Slideshow] V1.10 Adding meta box to custom post typeOh sorry I forgot to post the error message –
Warning: call_user_func() expects parameter 1 to be a valid callback, function ‘ps_custom_post_type_uploads’ not found or invalid function name in /Applications/MAMP/htdocs/applewood/wp-admin/includes/template.php on line 1074
Hope to hear back soon:)
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Error: Could not decode JSONThanks for getting back to me,
Unfortunately that has not changed anything, and weirdly the account section says that I have used 200+ compressions when I haven’t actually done any… I tried to use it and it looked like it was working, except for every image it just returned ‘0 compressions’.
Could it be a permissions thing? Should I contact my host?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Excerpt lengthGreat, worked perfectly!
Thanks for the support.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Add post category classCool, thanks again.
Your plugin support is fantastic!
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Add post category classThank you,
All of the sorting options in the plugin are fantastic, so everything is functioning perfectly on load.
The reason I want the category name added as a class is so I can style the results based on their category.
Does that make a difference to your recommendation?
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Add post category classThanks for that TC.K,
I’ve had another try but still can’t get the category name to appear as a class. Do you mind having a look at where I’m going wrong?Thanks again!
add_filter('uwpqsf_result_tempt', 'customize_output', '', 4); function customize_output($results , $arg, $id, $getdata ){ // The Query $apiclass = new uwpqsfprocess(); $query = new WP_Query( $arg ); ob_start(); $result = ''; // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post();global $post; echo '<div class="client-box'; foreach(wp_get_object_terms() as $taxo) { echo 'category-'.$taxo->slug; }; echo '">'; echo '<span>'.get_the_post_thumbnail().'</span>'; echo '<h1 class="client-title">'.get_the_title().'</h1>'; echo '<h1 class="client-excerpt">'.get_the_excerpt().'</h1>'; echo '<h1>'.the_meta().'</h1>'; echo '</div>'; } echo $apiclass->ajax_pagination($arg['paged'],$query->max_num_pages, 4, $id, $getdata); } else { echo 'No clients fit these criteria'; } /* Restore original Post Data */ wp_reset_postdata(); $results = ob_get_clean(); return $results; }Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] category descriptionsPERFECT! That works exactly the way I need.
Great plugin support. A++++
I’ll send a donation through your site.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] category descriptionsHi TC.K,
Unfortunately that is now only outputting the checkbox and the text ‘Description:’ for each label. So the category name has disappeared and it’s not showing the actual description text.Really appreciate you help.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] category descriptionsHello again,
Thanks for writing that code for me, unfortunately the category descriptions are not displaying. I don’t see any change to the code rendered in the web inspector – is there a way I can check if the function is working? or do you mind having another look over what you wrote to check it?
Thanks again.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] category descriptionsAmazing:)
Thanks for the great plugin support!Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] category descriptionsThanks for the response, I’m using checkboxes to filter the site pages via category,and the plugin is working fantastic – I’d like to add the category descriptions to give the user a bit more info about their choice.
I’d like a list like this-
‘[checkbox] Category title
Category description…’Unfortunately for me my php skills are non existent, but i’m trying to learn – could you help me with adding the filter? So far I know it’s not this –
add_filter( ‘uwpqsf_cmf_field_checkbox’, ‘add_category_descriptions’ );
function ‘add_category_descriptions'($term) {
$GLOBALS[‘category’] = $term->description ?>
}Thanks!