Osclass forums

Development => Development => Topic started by: grisbi on July 27, 2019, 07:42:41 pm

Title: [Résolu]display all ads from a user
Post by: grisbi on July 27, 2019, 07:42:41 pm
Hello ,

How to display all ads from a user
I saw that in a forum post and I can not find it anymore

Thank you for your help
Title: Re: display all ads from a user
Post by: WEBmods on July 27, 2019, 08:15:09 pm
Hello!

Check this: https://doc.osclass.org/Display_only_certain_type_of_listings

Regards.
Title: Re: display all ads from a user
Post by: grisbi on July 27, 2019, 11:23:54 pm
Hi WEBmods

Thank you but I would have preferred the address of the post where I could have this function

so if someone to thank you in advance
Title: Re: display all ads from a user
Post by: marius-ciclistu on July 28, 2019, 12:43:52 am
Add to your url  /search/user,id  if you use permalinks.

Replace Id with user's id
Title: Re: display all ads from a user
Post by: grisbi on July 28, 2019, 12:54:04 pm
Hi
I would like to add a button in the ad to display all ads from the author of this ad

I do not quite understand how to do, I saw this post in the forum that I can not find anymore

thank you
Title: Re: display all ads from a user
Post by: p206ab on July 29, 2019, 12:55:59 pm
There is a plugin List all sellers item on the Market (I believe it's free) which does exactly that.
Title: Re: display all ads from a user
Post by: grisbi on August 01, 2019, 11:21:40 pm
Hi p206ab

Yes I could take this plugin solution but I would rather have a live code that I could adapt to my situation

Thank you for your help
Title: Re: display all ads from a user
Post by: BritWeb on August 02, 2019, 01:05:27 am
Hi p206ab

Yes I could take this plugin solution but I would rather have a live code that I could adapt to my situation

Thank you for your help

Is the following any good for you?

Code: [Select]
<?php if( osc_item_user_id() > 0) { ?>
<span><a href="<?php echo osc_search_url(array('sUser' => osc_user_username())); ?>"><?php _e('See all ads by this user''bender'); ?></a></span>
<?php ?>


Regards
Title: Re: display all ads from a user
Post by: grisbi on August 02, 2019, 04:32:02 pm
I copied this code into item.php and nothing is displayed

would I have forgotten something?
Title: Re: display all ads from a user
Post by: BritWeb on August 03, 2019, 12:28:32 am
This code works fine with 'bender' theme when applied to item-sidebar.php. This gives a link, 'See all ads by this user' and when clicked it takes to the page that lists all the ads by that user.

Regards
Title: Re: display all ads from a user
Post by: grisbi on August 03, 2019, 11:37:33 am
still nothing displayed

I copied this code into item_sidebar.php
Title: Re: display all ads from a user
Post by: BritWeb on August 03, 2019, 12:29:05 pm
still nothing displayed

I copied this code into item_sidebar.php

Download and rename the attached 'item-sidebar.txt' file as 'item-sidebar.php'. Upload this to your 'bender' theme folder replacing the existing 'item-sidebar.php'

Backup your original file before doing so.


Best of luck!

Title: Re: display all ads from a user
Post by: grisbi on August 03, 2019, 05:15:34 pm
test avec ton fichier It still does not work
Title: Re: display all ads from a user
Post by: grisbi on August 08, 2019, 12:18:58 pm
I found the solution

in the file item-sidebar.php

Replace:
Code: [Select]
<?php if( osc_item_user_id() != null ) { ?>
        <p class="name"><?php _e('Name''bender'?>: <a href="<?php echo osc_user_public_profile_urlosc_item_user_id() ); ?>" ><?php echo osc_item_contact_name(); ?></a></p>
    <?php } else { ?>
        <p class="name"><?php printf(__('Name: %s''bender'), osc_item_contact_name()); ?></p>
    <?php ?>
By :
Code: [Select]
    <?php if( osc_item_user_id() != null ) { ?>
    <p class="name"><?php _e('Name''bender'?><?php echo osc_item_contact_name(); ?></a></p>
        <p class=""><a href="<?php echo osc_user_public_profile_urlosc_item_user_id() ); ?>" ><?php _e('See all ads''bender'); ?></a></p>
    <?php } else { ?>
        <p class="name"><?php printf(__('Name: %s''bender'), osc_item_contact_name()); ?></p>
    <?php ?>

it is for the theme "Bender" adapt it for your theme