Page 5 of 12 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 112

Thread: Put Featured Ads on Top in Category and Search Results

  1. #41
    Marketplace Seller mohsinoffline's Avatar
    Join Date
    Dec 2011
    Location
    Algeria
    Posts
    1,575
    Thanks
    44
    Thanked 213 Times in 192 Posts
    Great thanks. I have sent over the patched file to your email address. Please let me know if it works.

    Regards,
    Mohsin
    Do you need content that helps to rank your website better on Google? Check out https://aicontently.com

    Create a website like Retailmenot with FlatterPro Theme , Check out the demo here Retailmenot





  2. #42
    manamaga's Avatar
    Join Date
    May 2012
    Location
    United Kingdom
    Posts
    511
    Thanks
    9
    Thanked 14 Times in 13 Posts
    I'm thinking of buying this plugin. I dont have a child theme so will any changes be lost if I update CP?

  3. #43
    Marketplace Seller mohsinoffline's Avatar
    Join Date
    Dec 2011
    Location
    Algeria
    Posts
    1,575
    Thanks
    44
    Thanked 213 Times in 192 Posts
    Hi there, none of your changes will be lost because it's a plugin, not a mod. The plugin actually does not change anything in your core ClassiPress files.
    Do you need content that helps to rank your website better on Google? Check out https://aicontently.com

    Create a website like Retailmenot with FlatterPro Theme , Check out the demo here Retailmenot





  4. #44
    manamaga's Avatar
    Join Date
    May 2012
    Location
    United Kingdom
    Posts
    511
    Thanks
    9
    Thanked 14 Times in 13 Posts
    Nice one, thanks.

  5. #45
    manamaga's Avatar
    Join Date
    May 2012
    Location
    United Kingdom
    Posts
    511
    Thanks
    9
    Thanked 14 Times in 13 Posts
    Great, how simple. Install>Go! It just works! (not that I was expecting it not to work :-/) Sometimes with plugins there are settings to change etc but this just goes straight from the box. Thanks!

  6. #46
    Marketplace Seller mohsinoffline's Avatar
    Join Date
    Dec 2011
    Location
    Algeria
    Posts
    1,575
    Thanks
    44
    Thanked 213 Times in 192 Posts
    Thanks for your kind words manamaga!
    Do you need content that helps to rank your website better on Google? Check out https://aicontently.com

    Create a website like Retailmenot with FlatterPro Theme , Check out the demo here Retailmenot





  7. #47
    Amateur emilianoaguirre's Avatar
    Join Date
    May 2012
    Location
    Argentina
    Posts
    14
    Thanks
    10
    Thanked 1 Time in 1 Post
    Quote Originally Posted by emilianoaguirre View Post
    My fix It doesn't work.

    1) It shows the sticky post on top but when i do a search shows all sticky post on top and then then the resulting ones.

    I think the problem is on this line:
    Code:
    query_posts(array('caller_get_posts' => 1, 'paged'=>$paged));
    /edit/

    this:
    Code:
    query_posts(array('caller_get_posts' => 1, 'paged'=>$paged));
    works as this:
    Code:
    query_posts(array('ignore_sticky_posts' => 1, 'paged'=>$paged));
    if i change
    Code:
    'ignore_sticky_posts' => 1
    to
    Code:
    'ignore_sticky_posts' => 0
    then the problem 1) appears.

    Still working on a solution
    YES!!!! Found It!!!

    To make this plugin compatible with Wp Custom Search plugin must edit:

    /wp-content/plugins/featured-ultimate/featured-ultimate.php

    edit
    Code:
    function tb_sticky_on_top( $sql ){
    
     	if( is_tax(APP_TAX_CAT) || is_search() ){
    to
    Code:
    function tb_sticky_on_top( $sql ){
    
     	if( is_tax(APP_TAX_CAT) || is_search() || $_GET['search-class'] ){
    that take me long ... hope it help someone

  8. #48
    Marketplace Seller mohsinoffline's Avatar
    Join Date
    Dec 2011
    Location
    Algeria
    Posts
    1,575
    Thanks
    44
    Thanked 213 Times in 192 Posts
    Brilliant news, so it's practically just changing one line of code? Awesome! Thanks for sharing it!
    Do you need content that helps to rank your website better on Google? Check out https://aicontently.com

    Create a website like Retailmenot with FlatterPro Theme , Check out the demo here Retailmenot





  9. #49
    Amateur emilianoaguirre's Avatar
    Join Date
    May 2012
    Location
    Argentina
    Posts
    14
    Thanks
    10
    Thanked 1 Time in 1 Post
    Quote Originally Posted by mohsinoffline View Post
    Brilliant news, so it's practically just changing one line of code? Awesome! Thanks for sharing it!
    Yes, only changing that line (~25) .

    May be you can check somehow if this plugin is installed and add the compatibility in you next update.

    Always glad to share and thank for your work!

  10. #50
    Marketplace Seller mohsinoffline's Avatar
    Join Date
    Dec 2011
    Location
    Algeria
    Posts
    1,575
    Thanks
    44
    Thanked 213 Times in 192 Posts
    I think changing it to below will also check in a way that the plugin is installed, basically same as you did, but this won't throw any PHP notices or warnings. It's not the best way to check if the plugin exists, but it is unlikely to be any other reason for your query string to contain 'search-class'. I will surely make it compatible with this plugin as well as the AJAX post sort plugin in the next version.

    PHP Code:
    if( is_tax(APP_TAX_CAT) || is_search() || isset($_GET['search-class']) ){ 
    Cheers!
    Mohsin
    Do you need content that helps to rank your website better on Google? Check out https://aicontently.com

    Create a website like Retailmenot with FlatterPro Theme , Check out the demo here Retailmenot





Page 5 of 12 FirstFirst ... 34567 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Mod, Let's featured ads appear first (top) in search results and MUCH MORE!!
    By fedeogue in forum ClassiPress General Discussion
    Replies: 29
    Last Post: July 21st, 2013, 07:36 AM
  2. Featured listings on search results
    By inexistentman in forum Vantage General Discussion (Legacy)
    Replies: 7
    Last Post: September 4th, 2012, 06:29 AM
  3. Make featured ads (sitcky posts) first (top) results in search
    By fedeogue in forum Report ClassiPress Bugs
    Replies: 7
    Last Post: June 12th, 2012, 11:08 AM
  4. Error 404 on search results by category
    By manolosuarez in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: March 20th, 2011, 05:46 PM