Gaurang Dabhi
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF: Better Search] Imports from WP All Imports aren’s searchableHi @mateuszgbiorczyk
I installed the plugin you sent. But it does not work for me. Still the same. Do you need anything from my side?Forum: Plugins
In reply to: [ACF: Better Search] Imports from WP All Imports aren’s searchableHi I face the similar problem.
I imported data into custom CPT and searching does not work.
It works fine for data I added manually. There are around 13k data. So I can’t add them manually. Any solution?Thanks.
Forum: Plugins
In reply to: [Slideshow] Pagination with numbersdidn’t work at all
Forum: Plugins
In reply to: [Slideshow] only !slideshow_deploy! displays when i use shortcode with AFCgot the solution
write this in your FUNCTION.phpfunction my_acf_format_value_for_api($value, $post_id, $field){ return str_replace( ']]>', ']]>', apply_filters( 'the_content', $value) ); } function my_on_init(){ if(!is_admin()){ add_filter('acf/format_value_for_api/type=wysiwyg', 'my_acf_format_value_for_api', 10, 3); } } add_action('init', 'my_on_init');
Forum: Plugins
In reply to: [Secure Custom Fields] how do i filter the content for wysiwyg editor??got the solution
write this in your FUNCTION.phpfunction my_acf_format_value_for_api($value, $post_id, $field){ return str_replace( ']]>', ']]>', apply_filters( 'the_content', $value) ); } function my_on_init(){ if(!is_admin()){ add_filter('acf/format_value_for_api/type=wysiwyg', 'my_acf_format_value_for_api', 10, 3); } } add_action('init', 'my_on_init');
Forum: Plugins
In reply to: [Slideshow] how can i change the default height and widthok its done.. i was dumb that i could not see that DEFAULT SETTING are already given
Forum: Plugins
In reply to: [Secure Custom Fields] ACF 4.0 wysiwyg – the_content filter@wizzud Thanks buddy you solved my problem
Forum: Plugins
In reply to: [Lightbox Pop - Responsive Lightbox] Lightbox Pop vs. WP Super Cacheyes almost same thing happens in my site https://movietrailershollywood.com/
if w3cache is activated in then pop up box does not show…… if i deactivate it i can see the popup box….
@authors any help with that?
Forum: Plugins
In reply to: [WP Lightbox 2] Display larger (different) image on image mouse cilckAt last i got the solution…. which goes something like this….
first i installed wp lightbox 2
then using advanced custom field plugin….
i took 2 images (1 small and 1 big) form admin panel….
then in backend on my page i wrote this code
<a href="<?php the_field('large_image',175); ?>" rel="lightbox"> <img src="<?php the_field('small_image',175); ?>" alt="" /> </a>
and it worked for me perfectly….. the default image source will be our small image and when user click on the image it will show the (whole different and larger) image …..the large image will be in our anchor tag…
??
Forum: Fixing WordPress
In reply to: Display larger (different) image on image mouse cilckAt last i got the solution…. which goes something like this….
first i installed wp lightbox 2
then using advanced custom field plugin….
i took 2 images (1 small and 1 big) form admin panel….
then in backend on my page i wrote this code
<a href="<?php the_field('large_image',175); ?>" rel="lightbox"> <img src="<?php the_field('small_image',175); ?>" alt="" /> </a>
and it worked for me perfectly….. the default image source will be our small image and when user click on the image it will show the (whole different and larger) image …..the large image will be in our anchor tag…
??
Forum: Plugins
In reply to: [Zoom Image] Doesnt do anything in 3.5.2ok now its working fine…. i dont know why it wasnt working that time… thank you that you replied….
Same question
Forum: Plugins
In reply to: [Contact Form 7] Form Working on POSTS but not on PAGESOk the problem is solved….. it was due to looping….. i didnt use WORDPRESS STANDARD LOOP… i used another code which was causing me the problem….
Instead of wp standard loop i was using following code in my theme pages….
<?php
$queried_post = get_post(the_ID());
$title = $queried_post->post_title;
echo $title;
echo $queried_post->post_content;
?>Forum: Plugins
In reply to: [Contact Form 7] Form Working on POSTS but not on PAGESok thank u guys…..
But I dont have any other plugin activated….. and i used both chrome and firebug….
Chrome is showing me no error in JS and firebug is showing me this error
TypeError: this.j.contentWindow is null
Can any of u explain what do i do with that?..,
Forum: Plugins
In reply to: [Contact Form 7] Form Working on POSTS but not on PAGESI used this starter theme https://themble.com/bones/
and then developed a whole new theme….
yes i have checked its working fine in twenty twelve and twenty eleven…. but not in my theme…what am i missing?