Osclass forums
Development => Development => Topic started 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
-
Hello!
Check this: https://doc.osclass.org/Display_only_certain_type_of_listings
Regards.
-
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
-
Add to your url /search/user,id if you use permalinks.
Replace Id with user's id
-
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
-
There is a plugin List all sellers item on the Market (I believe it's free) which does exactly that.
-
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
-
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?
<?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
-
I copied this code into item.php and nothing is displayed
would I have forgotten something?
-
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
-
still nothing displayed
I copied this code into item_sidebar.php
-
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!
-
test avec ton fichier It still does not work
-
I found the solution
in the file item-sidebar.php
Replace:
<?php if( osc_item_user_id() != null ) { ?>
<p class="name"><?php _e('Name', 'bender') ?>: <a href="<?php echo osc_user_public_profile_url( osc_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 :
<?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_url( osc_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