Hi,
1. currently to show more than 5 entries you can use the [adverts_categories] shortcode with the “sub_count” param like this
[adverts_categories sub_count="10"]
to hide the View All link you can add the code below in the wp-admin / Appearance/ Customize / Additional CSS panel
.adverts-categories-all .adverts-flexbox-list > li:last-child {
display: none;
}
2. I am not sure what do you mean, can you resend your question in English?
The users can log in/register using the default WordPress login and registration forms, you can also some other 3rd-party plugins like https://ww.wp.xz.cn/plugins/user-registration/ to allow users to login/register.
Pretty much all of the frontend registration plugins register normal WP accounts so user who will register using them will be able to see the [adverts_manage] shortcode content.
3. I can’t tell, I am not that familiar with the Elementor.
What you can try is in your theme or child-theme folder create a taxonomy-advert_category.php file and copy to it content from the archive.php or taxonomy.php this should disable the default WPAdverts code for handing the taxonomies and maybe allow you to use different templates.
Thread Starter
tommi8
(@tommi8)
Thank you, 1 and 2 works great.
To log in: The user creates an ad and click on “Create an account”.
But there is no login-data (Username/Passwort). How can user log in later to edit his ad?
I understand that you mean the user checks the “Create Account” checkbox but does not receive a confirmation email?
If so then you can install a plugin like an Email Log to see if the message is not sent or not delivered if it is logged but you do not see it in the inbox it means you will need to configure email delivery via SMTP, you can do that with a plugin like https://ww.wp.xz.cn/plugins/wp-mail-smtp/
By default WP will send an email that will ask user to set his password if you would like the user to receive the password automatically you can use the Custom Registration Email snippet https://github.com/simpliko/wpadverts-snippets/blob/master/custom-registration-email/custom-registration-email.php
How to install the snippet you can read here https://github.com/simpliko/wpadverts-snippets/ at the bottom of the page.
Thread Starter
tommi8
(@tommi8)
Thank you, the email is working now.
Can I change the URL in the email where you have to click on the confirmation link? Background, I changed the wp-login.php to another one that only I know. But now you can see them on the confirmation link.
Thread Starter
tommi8
(@tommi8)
Hello Greg
where are registered email addresses stored?
what happens if the user has forgotten his password, can he receive a new mail for pw-reset? At the moment I only see “e-mail account already exists”
if I delete the complete ad, the e-mail remains “somewhere”.
-
This reply was modified 4 years, 2 months ago by
tommi8.
Hi,
the users are being registered as normal WP users so the email addresses are stored in the wp_users table, if the user forgot his password he can reset it using a default WP password reminder (/wp-login.php?action=lostpassword).