Discussion on MyListing - Directory & Listing WordPress Theme

Discussion on MyListing - Directory & Listing WordPress Theme

Cart 21,453 sales
Recently Updated
Well Documented

27collective supports this item

Supported

This author's response time can be up to 1 business day.

12793 comments found.

still did not respond to the support team !!!! Urgent Need help

Hi,

What’s your helpdesk username?

Hi, is there a snippet to automatically redirect users to their dashboard listings page after publish a listing using the free package plan? I’ve disabled the repeat purchase for free plans, and when a user publish a listing, it appears on a not very attractive page.

Hi,

We don’t have a snippet for this, the redirection after you finish adding the listing is done in includes/src/forms/add-listing-form.php file, look for the done() method (line 420 to 431)

Hi,

Thanks, I’ve added this snippet to my child theme’s functions.php and it works perfectly. I’m leaving it here in case someone asks you this question again and you can help them. It works for redirecting the page after publishing a listing with a free package if the “repeat purchase” option is disabled:

// Snippet for functions.php. Change “PACKAGE_ID” for the ID of your free package and ”/your-target-page/” for the URL you want to redirect after publishing the listing

add_action(‘mylisting/submission/done’, function($listing_id) { if ( ! $listing_id ) return; $get_package = function($id) { return get_post_meta($id, ‘_case27_listing_package’, true) ?: get_post_meta($id, ‘_package_id’, true) ?: get_post_meta($id, ‘package_id’, true); }; $package_id = $get_package($listing_id) ?: ( isset($_GET[‘selected_package’]) ? sanitize_text_field($_GET[‘selected_package’]) : ’’ ); if ( (int) $package_id === PACKAGE_ID ) { $target = home_url(’/your-target-page/’); if ( ! headers_sent() ) { wp_safe_redirect($target); exit; } add_action(‘template_redirect’, function() use ($listing_id, $target) { $check = get_post_meta($listing_id, ‘_case27_listing_package’, true) ?: get_post_meta($listing_id, ‘_package_id’, true) ?: ( isset($_GET[‘selected_package’]) ? sanitize_text_field($_GET[‘selected_package’]) : ’’ ); if ( (int) $check === PACKAGE_ID ) { wp_safe_redirect($target); exit; } }, 1); } }, 1);

To complete my website, I only need to know the file paths I need to modify to enable a package limit based on required option for the logo, cover, and gallery in listing types. This way, you could set the images as required only on certain plans.

Which WC subscriptions plugin do you recommend? Specifically? Could you provide a link?

Hi,

For listing subscription packages you need to use the official woocommerce subscriptions plugin: https://woocommerce.com/products/woocommerce-subscriptions/

hello 27collective ,

Glad to hear that vr/360 are possible to add in template. could u pls suggest a plugin ideal for mylisting

rgds

Hi,

Any plugin that uses shortcode will work in MyListing. I’m not up to date with recent vr/360 plugins, you can ask other MyListing users in the facebook group: https://www.facebook.com/groups/MyListing

I installed the template, but for some reason, messaging and messages within the topic aren’t working. Please tell me what to do about this.

Hi,

Wp admin > theme tools > direct messages > just click the update button in that page and it will get fixed

Where can I add/edit restarant menus for places?

What is the “restaurant menu” in the preset fields for? Wouldn’t it be best for customers to edit their own listings (so they know what they are)?

And there is a “general repeater” in the “preset fields” and a “general repeater” in the “create custom field” section. When I click on the “general repeater” under “create custom field”, it creates a “Custom field” general repeater in the “used fields”. When I click on the “general repeater” under “preset fields”, it creates a “general repeater” in the used fields.

How do i make this easy for the people editing their listing and wanting to add menu items? Are there menu categories?

I want to use this theme for a restaurant review website.

I want to create a listing site for restaurants, and I’d like to use your brilliant theme. I really like it. It is the best one I have come across. I have hundreds of theme purchases, and this is one of the few that are still active, putting out updates for their theme to this day.

Anyway, I want to make the site easy for other people to add their websites and include their own restaurant menus in their listings.

I just don’t understand all of these options (listed above).

Hi,

‘Restaurant menu’ and ‘General repeater’ are basically the same field, I’d recommend using the ‘General repeater’ field since in the future we plan to update just that one

1. Add the general repeater field, click on it and select which options you want to show for that field

2. Single page > content & tabs > profile > add the general repeater block and select the field you created

3. Now when you or your site users add/edit listings you can add repeater items using that field

evatis

evatis Purchased

Hello, I’m encountering a permissions issue with the MyListing plugin. When I try to edit a listing type (specifically the Event type) from the Edit Listing Type page, I get the error: “You don’t have permission to access this resource.” I’m the site admin, so this shouldn’t happen. Please advise or provide a fix.

evatis

evatis Purchased

Hello, Can you give me the average support response time? Before I purchased the theme, it took you 3 days to respond to one of my questions. Now that I’ve purchased the theme, I posted a message, but no one responded in 11 hours. thank you

Hi,

We have replied in your ticket

is it possible to have a section where a vendor can request for quotes from other vendors in bulk? so when the request is made, everyone on the selected category gets the message? If no, is there a workaround

Hi,

We don’t have a feature for that unfortunately

Hi Team, nice theme ! We would like to know the possibility of listing RENT A CARS , Tours Packages & Activities for a Tourism based Listing Directory apart from many other listing categories ? Also we will be hosting with AWS

Hi,

Yes that’s possible. However if you also want to add a booking form inside those listings you would need a booking plugin as well. You can use AWS hosting

Hello, I dont use the email section on the theme, I only use direct messages, can I delete contact form 7, or is needed for something else?

Thanks in advance

Hi,

You can safely delete it

Thank you

Greetings, Is there a CSS way to keep the header bar static on a select page?

Thank you for your response, This doesn’t seem to do it for me however .

I would like for it to not hide, the solution you provided makes it scroll with the entire page content. (Would have to scroll back to top of page to see the menu)

Was fixed via Helpdesk thank you so much

i have a strange bug on add listing page. when i filled out all the info and try to submit a listing , it just shows “is a required field.” but it does not show which field is required. But all the fields are correctly filled out already and no one can add a listing on our site.

Hi,

Have you added a label for all the fields you have created (listing type > fields)?

Hi,

I am writing to report an issue with the Mapbox icons on this new version 2.12 (e.g., museum, hospital, zoo) are not loading on the map.

Upon inspecting the browser console, I found the following warning repeatedly appearing:

Image “museum” could not be loaded. Please make sure you have added the image with map.addImage() or a “sprite” property in your style.

The warning points to the util.js file, which is part of the Mapbox library. This suggests that the theme is requesting map icons that are either not properly registered with the Mapbox API or the image files are missing from the theme’s assets.

Specifically, all the warning icons displayed on the console are not visible on the map.

Could you please investigate this issue and provide a fix?

I’d also like to make a suggestion for a future update or to know if it’s possible to do so with a snippet. Is it possible to enable a package limit based on a required fields for example for logo, cover or gallery?

Thank you for your help.

Best regards,

I apologize it’s not a new version issue, even though these warnings don’t appear in older versions, I had an old sprite token. Issue resolved.

About the second question, Is it possible to enable a package limit based on required fileds for example for logo, cover or gallery? On this way you could set the images as required only on certain plans.

That’s not available unfortunately, it would require custom coding

Thank you for your response. I understand that there is no native option to make fields mandatory based on the listing package, and that it would require custom coding. What I need is exactly that: a toggle in the Listing Types interface that allows me to mark specific fields as mandatory only for certain packages. Could you confirm if there is any official hook or filter I could use to implement this safely, without modifying theme files, and compatible with future updates? In case there is no dedicated snippet, could you clarify which theme files would need to be modified to implement this?

There is a big fundamental SEO-related flaw with your theme, especially as it relates to the /category/ pages.

All your /category/ pages have their canonical set to /explore/. This is problematic for SEO, and it is already affecting my site’s SEO, especially in Google Search Console, as many of my /category/ pages are not being indexed.

I saw a post by @27collective where you told a buyer of your theme to use Yoast SEO to change the canonical. I am using Rank Math, and from what I see, it is not possible to change the canonical of the /category/ pages.

This is because, when I load a /category/ page and click “Edit page” at the top of the page, the page that loads for editing is the /explore/ page instead of the /category/category-name-page/.

I shot this Loom video to show you exactly what I mean: https://www.loom.com/share/eb22f72c075d4d38aa7cee6b8fe56d7c

Please watch this video and kindly explain to all your past and future buyers if there is a way to fix this flaw.

Note: I am using: My Listing Child Version: 1.1 My ListingVersion: 2.11.4

Hi,

I see that we haven’t mentioned this in changelog however we have fixed this in 2.11.8. From that version even if you don’t have a seo plugin it will still show the correct canonical url for term pages

Hello , Any chance to preview the RTL version in demo ?

Is there a way to add a second video URL filed input to the listings? I have tried several work arounds and failed at adding a second video

Hi,

You can add a ‘URL’ custom field, that works the same as the preset video field. You then display it in listing page using the Video block

Greetings, thank you for this solution

Is there any way to get the masonry to work better on the listing page stores?

The masonry on our archive shop page is much tighter, not sure if you are able to make the gaps on the listing page close like these or at least closer than it currently is

Hi,

Do you mean the gaps between preview cards, e.g. https://snipboard.io/W0DlPJ.jpg

Open a ticket in helpdesk and we’ll assist you with this

Greetings, I will open a new ticket for it now. It is the store tab on the listings that display the woocommerce products I will add the specific urls to my pages in the helpdesk ticket so you can see it directly.

We have replied there

Hi,

1.Is there an option in the theme to moderate/approve listings before they go live? 2.Can listings be managed flexibly (edited, hidden, or deleted by the admin or the user)? 3.Does the theme support a calendar with date/time selection (e.g., for hall rentals) and display it inside the listing? 4.Is it possible to create multiple listing types or customize them by categories such as Dance schools, Dance teachers, Dance halls, Dance events? 5.Can user registration be implemented via promo code (free) and/or as paid registration? 6.Is there built-in functionality to limit the number of spots (so users can see available/remaining spots)? 7.Can listings be pinned to the top (featured listings) for an extra fee? 8.What options are available for managing partner access (so the admin can flexibly adjust their permissions)? 9.How flexible are the submission/registration forms — can they be customized for different listing types? 10.Is it possible to add a Newsletter/Community block in the future without code modifications, just through settings?

Hi,

1. Yes that’s available

2. Yes, admins can manage all listings in their site both from admin dashboard and frontend dashboard. Users can manage their listings from their frontend dashboard. Dashboard looks like this: https://snipboard.io/rqsonc.jpg

3. No this is not available

4. Yes

5. We don’t have membership packages, to enable registration using membership plans you would need to use Membership plugins.

6. What do you mean by number of spots? SHare some more details

7. Yes, we have ‘Featured’ listings and ‘Promoted’ listings. When you create listing packages, you can enable featured listings. E.g. every listing added with one of your premium plans will have featured priority. We also have promotional packages, users can purchase a promotional package to bump their listings at the top for a limited time. ‘Promoted’ listings have priority 2 (will show at the top of results), ‘Featured’ listing have priority 1 and will show below promoted listings. Other listings have priority 0 and show below the first two groups

8. Share some more details about this question

9. Yes, listing submission form can have unique fields for each listing type. Registration form allows two type of user roles each with their own fields

10. We don’t have a built in features for this, you can use newsletter plugins however

said106

said106 Purchased

Hello! Is it possible to add an opt-in process for marketing purposes during the sign up?

Hi,

Are you using any newsletter plugin? There isn’t any built in functionality for this however newsletter plugins usually have this option to display an opt-in checkbox in registration form

Hi, I’m using MyListing theme for my website tukangrumah.com. On my Explore page, it always shows blank results until I click one of the listing type tabs (e.g. Binaan/Ubahsuai). I already set default filter values like ?type=binaan but the page still loads empty. I’ve also set the Explore page as the homepage in WordPress → Reading Settings. How can I make Explore always show results by default without users having to click the buttons first? and also. how can i put whatsapp button in profile page for use to click. Really hope you can help me resolve this. thank you.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey