Title: oneguy's Replies | WordPress.org

---

# oneguy

  [  ](https://wordpress.org/support/users/oneguy/)

 *   [Profile](https://wordpress.org/support/users/oneguy/)
 *   [Topics Started](https://wordpress.org/support/users/oneguy/topics/)
 *   [Replies Created](https://wordpress.org/support/users/oneguy/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/oneguy/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/oneguy/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/oneguy/engagements/)
 *   [Favorites](https://wordpress.org/support/users/oneguy/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 40 total)

1 [2](https://wordpress.org/support/users/oneguy/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/oneguy/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/oneguy/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search inside shortcode](https://wordpress.org/support/topic/search-inside-shortcode/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/search-inside-shortcode/#post-16025740)
 * Thank you so much for your support!!!!
 * I finaly managed 🙂
 *     ```
       add_filter( 'relevanssi_content_to_index', 'rlv_add_extra_content', 10, 2 );
       function rlv_add_extra_content( $content, $post ) {
           global $wpdb;
   
             $values = get_field('users-selected');
   
       foreach($values as $value):
   
           $content .= $value['display_name'] ;
   
           endforeach;
   
   
   
           return $content;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search inside shortcode](https://wordpress.org/support/topic/search-inside-shortcode/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/search-inside-shortcode/#post-16022398)
 * The shortcode is outside the content – It takes the acf user field and displays
   it’s user diplay name.
 * [https://buddy.digitalguru.co.il/love/%D7%A4%D7%A8%D7%92%D7%95%D7%9F-%D7%97%D7%93%D7%A9-%D7%97%D7%93%D7%A9-%D7%97%D7%93%D7%A9-%D7%93%D7%A9%D7%A9%D7%A9%D7%A9%D7%A9%D7%A9](https://buddy.digitalguru.co.il/love/%D7%A4%D7%A8%D7%92%D7%95%D7%9F-%D7%97%D7%93%D7%A9-%D7%97%D7%93%D7%A9-%D7%97%D7%93%D7%A9-%D7%93%D7%A9%D7%A9%D7%A9%D7%A9%D7%A9%D7%A9)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search inside shortcode](https://wordpress.org/support/topic/search-inside-shortcode/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/search-inside-shortcode/#post-16022044)
 * Thank you so much for your reply!
    No… I get only this –
 *     ```
       The title
       דשששששש חדש פרגון
   
       The content
       בקצרה
   
       Authors
       גיא
   
       Custom fields
       290
       ```
   
 * and in the “How does the post look like in the database?
    ”
 * I get only the content.
 * Any advice will be greatly appreciated 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search inside shortcode](https://wordpress.org/support/topic/search-inside-shortcode/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/search-inside-shortcode/#post-16012386)
 * Thank you so much for your reply 🙂
    I deleted the span line so now there is 
   only $results.
 * “Also, make sure the shortcode is defined in the Relevanssi indexing content 
   and not only in the front end.”
 * This I did not understand.
    I checked – “Expand shortcodes when indexing”; and
   hit the index again. Must say this is a custom post type that it is indexed as
   well.
 * Anything else I am missing?
 *     ```
       // Add Shortcode
       function get_user_recognition() {
   
         $values = get_field('users-selected');
   
       foreach($values as $value):
   
       $result =  $value['display_name'] . ' | ';
   
       $result .= 'סולומון';
       endforeach;
   
       return $result;
   
       }
       add_shortcode( 'recognition-users', 'get_user_recognition' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HD Quiz] Add Image to normal questions](https://wordpress.org/support/topic/add-image-to-normal-questions/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/add-image-to-normal-questions/#post-10212255)
 * Thank you so very much 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HD Quiz] Add Image to normal questions](https://wordpress.org/support/topic/add-image-to-normal-questions/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/add-image-to-normal-questions/#post-10209472)
 * Solved :)I used the featured Image 🙂
    But why is it cropped to 600 by 400 ? 
   Where can I set it to be full size?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Job Application author](https://wordpress.org/support/topic/job-application-author/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/job-application-author/#post-9453016)
 * Hi There.
    So after many many tests. let me rephrase the problem. I have a user
   with the role of employer. He posts a job, so the job belongs to him as an author.
   I have another user – a candidate – He applies for the job as candidate. I know
   it is him because he was logged in. (All the users are me) When I view the job
   application – the author of the job application is also the employer and not 
   the candidate. Is this the way it should be? How can I change that the author
   of the job application is also the one who submitted the job application? Thanks!
   Guy
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Quick View] Integration with Frontend Gallery Slider For ACF](https://wordpress.org/support/topic/integration-with-frontend-gallery-slider-for-acf/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/integration-with-frontend-gallery-slider-for-acf/#post-9451476)
 * Sloved 🙂
 *     ```
        <?php echo do_shortcode("[acf_gallery_slider acf_field='gallery' show_caption='false']") ;?>
       								 <script>
       									 jQuery(document).ready(function(){
       									   jQuery('.fagsfacf-gallery-slider').slick({
        dots: false,
         infinite: true,
         speed: 300,
         slidesToShow: 1,
         centerMode: false
       									   });
       									 });
       								</script>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Gallery Slider For ACF] Set size of images?](https://wordpress.org/support/topic/set-size-of-images/)
 *  [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/set-size-of-images/#post-9333271)
 * Hi There. Following aaron…
    I have a acf field of a gallery. I’m uploding images
   there using gravity forms. How can I setup an image size with hard crop? There
   is no option in acf gallery field for setting the size of the images. Is there
   such an option in the pro version? Thanks! Guy
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress REST API (Version 2)] Support delete methods](https://wordpress.org/support/topic/support-delete-methods/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/support-delete-methods/#post-8883563)
 * Also ,strangely enough – I get this in the header –
 * Access-Control-Allow-Methods →POST, GET, OPTIONS, PUT, DELETE
 * The bottom line – I cannot delte any custom post type I created – i GET 403 ERROR…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Varible price won't show](https://wordpress.org/support/topic/varible-price-wont-show/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/varible-price-wont-show/#post-7642052)
 * Thanks! I will try that….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Varible price won't show](https://wordpress.org/support/topic/varible-price-wont-show/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/varible-price-wont-show/#post-7642049)
 * Nothing still…
    Really strange. Disabled all plugins, reverted to twentysixteen.
   ran the woocommerce updater… Nothing…. Only if one of the variation’s price is
   different…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Varible price won't show](https://wordpress.org/support/topic/varible-price-wont-show/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/varible-price-wont-show/#post-7642011)
 * Thanks!
    The problem exists even after disabling all plugins… Have you ever encountered
   such a problem?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Varible price won't show](https://wordpress.org/support/topic/varible-price-wont-show/)
 *  Thread Starter [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/varible-price-wont-show/#post-7641858)
 * The problem exists even after disabling all plugins and reverts to the basic 
   theme…
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Slider by Soliloquy - Responsive Image Slider for WordPress] Hacked](https://wordpress.org/support/topic/hacked-75/)
 *  [oneguy](https://wordpress.org/support/users/oneguy/)
 * (@oneguy)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/hacked-75/#post-7848120)
 * Same Here…
    After deleting the plugin – no more spam posts…

Viewing 15 replies - 1 through 15 (of 40 total)

1 [2](https://wordpress.org/support/users/oneguy/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/oneguy/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/oneguy/replies/page/2/?output_format=md)