lazyym
Forum Replies Created
-
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Move RENEW button next to DELETE in ManageThat removed the More and Renew button Greg.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Replace Gallery/Video Capture ImageThank you sir. Just the idea that wordpress users can now offer an option for uploading videos is awesome! The big boys in the industry need some serious competition. Thank you for diving in. 🙂
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Replace Gallery/Video Capture ImageThanks Greg, that doesn’t do it. I want the pictures to expand to fit 100% width-wise. That squeezes them down to 100% height within the container. The container needs to expand for height responsively.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Replace Gallery/Video Capture ImageI would actually like to try your new system. Unfortunately, the images uploaded so far do not fit within the frames. All of the pictures uploaded so far have to be clicked to view them. Only a portion currently displays. Is their a way to have your new system display 100% width and auto for height?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] New Image Edit FunctionThanks Greg!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Peepso/Oembed/Adverts Link Preview ImagesNever mind!
Your force featured image snippet did the trick: https://github.com/simpliko/wpadverts-snippets
Thanks anyways!
Hi Greg,
I changed it to a short text with placeholders as options and it now works correctly. It is somehow related to dropdown at my site. I’ll hold off for now and leave this open. Maybe someone else will have the same problem eventually.
Forum: Plugins
In reply to: [iQ Block Country] Locked me out of backend after modem resetThanks, Do we know which parameters have to be changed?
A dropdown.
I have created it using the custom fields addon. But it still shows in ads when left empty.
How do I do this exactly? “In the fields created using API you need to check if the value is empty or not and based on that display the field row or not.”
I have display settings as:
Field label
Not required
Max choices 1
List starts with an empty option
Enter options myself
7 options entered myself
Forms and ad details display
Table Row
Text
Inline-without separator
With IconForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Require contact form logged inThis is the code from that link.
action( "init", "my_contact_form_init", 1000 ); function my_contact_form_init() { if( ! is_user_logged_in() ) { remove_all_actions( "adverts_tpl_single_bottom" ); add_action( "adverts_tpl_single_bottom", "anon_message" ); } } function anon_message() { echo "Login to contact the seller"; }I notice other functions have add_action, not just action like the code. When I replace it with add_action, it now works. 🙂
The complete function that now works for me is
add_action( "init", "my_contact_form_init", 1000 ); function my_contact_form_init() { if( ! is_user_logged_in() ) { remove_all_actions( "adverts_tpl_single_bottom" ); add_action( "adverts_tpl_single_bottom", "anon_message" ); } } function anon_message() { echo "Login to contact the seller"; }I’ve now set the template to private and it no longer appears in search. Will that affect sending?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Block ip and email address of listerThank you sir!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom Post Type For Push Notifications?Very good, that did it. Thank you sir!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom Post Type For Push Notifications?Still there after check again, no cache either.
Where do I change the version to 9999? I don’t see it in the snippet?