classifiedswp
Forum Replies Created
-
Forum: Plugins
In reply to: [Classifieds WP] Best Way To Separate Country@louisderry, if you’re not a developer this is not something you can do easily.
Here are some of the thins you would need:
1. Create a new hierarchical taxonomy (like categories) called ‘Countries’. Check the official codex examples.
2. Use a child theme to customize the classified submission form to add your new ‘Countries’ field
3. Add the PHP code that handles the new field and assigns it to the classified
4. Use a child theme to edit the single classified page to show the selected Country valueThis is not easy to do, unless you’re familiarized with PHP and child themes.
We would suggest you ask the help of a developer or wait for our own custom form solution. We’re currently working on a custom form add-on that should help users that need to customize the main submission form. No official release date yet.
Stay tuned for more info.
Forum: Plugins
In reply to: [Classifieds WP] Possible bulk upload?@michaelbackline, at this time, there’s not bulk upload.
You can use the default WP import tool if you only want to import classified titles, descriptions, categories and images. Additional meta like location, price or contact information would need to be filled manually.
Anyway, this is definitely something we’ll be adding in the future.
Forum: Plugins
In reply to: [Classifieds WP] Notification of Ad Submission@wishbone42, at this time, there are no notifications.
We’re considering some new features including notifications. These features might be added in the future to the core plugin or through add-ons. We’re still deciding.
Thanks for the suggestion on the default image. Definitely worth considering
Forum: Plugins
In reply to: [Classifieds WP] Error upload image@en10, you can only see the images you’ve uploaded. If you’re an admin, you can see ALL images.
To confirm this is not an issue, try posting a classified using a regular user with normal ‘contributor’ permissions.
Forum: Plugins
In reply to: [Classifieds WP] Unable to change detail page permalinkPaste this code to your theme ‘functions.php’;
add_filter( 'register_post_type_classified_listing', 'my_cwp_post_type' ); function my_cwp_post_type( $args ) { $args['rewrite']['slug'] = _x( 'xyz', 'Classified permalink - resave permalinks after changing this', 'classifieds-wp' ); return $args; }
Replace ‘xyz’ with whatever name you want to use instead of ‘classified’.
Forum: Plugins
In reply to: [Classifieds WP] Phone number disformatted@mrswease, thanks for reporting and the suggested fix.
Forum: Plugins
In reply to: [Classifieds WP] Problem to see a classified item@emanuelcelano, where are you getting this error?
Forum: Plugins
In reply to: [Classifieds WP] Disable RSSForum: Plugins
In reply to: [Classifieds WP] Images are displayed wrong@mblacklin, thanks for the details.
Can you provide the original image link or the size of the image you’re using so we can use it for reference to look for issues related with image display?
Thanks.
Forum: Plugins
In reply to: [Classifieds WP] Filter by price, by other fields@mexanikkmm, we don’t have an official release schedule for those features and similar features may become part of an add-on. That’s something we’re still discussing.
Thanks for the suggestion.
Forum: Plugins
In reply to: [Classifieds WP] Endpoind problem when WP Job Manager is also activeNot yet @roscabgdn, but expect an update soon.
Thank you for your patience.
Forum: Plugins
In reply to: [Classifieds WP] SHOW CATEGORIES in POSTS and LISTS@jonhallla, future updates should display the categories/types under the box that currently shows the listing location.
Forum: Plugins
In reply to: [Classifieds WP] Feature request. Show category in post.@welderpw, @jonhallla, ClassifiedsWP is bundled with a widget that can show Categories or Types.
You can have both Categories and Types by adding the same widget to the ‘Single Sidebar’. You just need to choose which taxonomy (Categories/Types) you want to display for each widget.
Forum: Plugins
In reply to: [Classifieds WP] Remove input boxes@tradedog, @jonhallla, you can remove the inputs by editing the template file named
classified-filters
(under /path/to/plugin/templates) and delete everything inside<div class="search_classifieds">
.Of course, it’s highly recommended that you do this change using a child theme.
Forum: Plugins
In reply to: [Classifieds WP] Images are displayed wrong@mblacklin, can you provide an example of the image you’re using or an example to the listing page showing that image?