Discussion on MyListing - Directory & Listing WordPress Theme

Discussion on MyListing - Directory & Listing WordPress Theme

Cart 21,523 sales
Recently Updated
Well Documented

27collective supports this item

Supported

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

12812 comments found.

Hi , my support has just expired and i have not used it, i have just an issue today , should i renew before to ask or can you help me ? thanks

Hi,

It looks like you have extended support, did you create a ticket in helpdesk?

URGENT! Hi there, are you able to assist me with internal coding if i renew support? i am looking for help with conditional filtering in our sign up form. Please coul dyou guide me its extremely urgent.

Hi,

We can’t assist with custom coding unfortunately, we can give some general advice but you would need to do most of the coding

Do you guys support WordPress 6.8.1?

Hi,

Yes WordPress 6.8.1 is supported

I have asked few queries 9 days ago, still i haven’t received any response. by when can i expect the same, also what is the turnaround time for any query asked by us ?

Hi,

We’re checking your ticket

We have a bug, the locations (g-maps) works fine on the explore page, also in the admin-page, but in the “Add new Listing”-Frontend, you cannot add a location, the map is not shown and in the console is no error.

Hi,

Open a ticket in our helpdesk

hi my user woocommerce my account page replaced by listing dashboard, how do i fix that and both can link to each other?

tq

yup but the page already overwrite by ur dashboard page

anyone?

Hi, I want to purchase the theme, I love the UI and somethings about it but I want to use it to build an Airbnb type website.

1. Do you intend to allow users to book or rent listings on the website (with a calendar feature for the exact day users want to book).

2. Would you offer split payments, to split payments between admin and businesses whenever a user book a space?

Hi,

1. You would need booking plugins for that too, we don’t plan to add a built in booking solution

2. For this too you would need a vendor plugin which allows you to set commissions for products that you users sell on your site

How do i import export events? im having hard time importing event data, dates and address and venue names when i use wp-all-import or export data is not visible, i did install the extention also still no help, and data look serialized i did create account with helpdesk still no solution

Hi,

We’re checking your helpdesk ticket

hello i want create sub categories to appear in jog it’s possible ? i want that https://www.travaux.com/construction-renovation-maison/architecte-professionnels

Hi,

Share some more details, I didn’t understand this question

can I import and auto create busienss profiles from google sheet data? if I scrape it from Google business before.

hi,

You can import them with plugins like wp all import, this process won’t be automated though. You will need to have listings in a csv file and then import the to your mylisting site using wp all import

Hi! We bought the theme and for now we are pretty happy, but we would love to see some features in future: 1. The possibility to let advertisement be connected with packages, so let’s say i buy the “Basic” Listing Package, then i am able to buy the “Basic” AD-Package too, but not the Advanced-AD-Package (based on my settings). 2. Package-Based Statistics on your listings (Advanced statistics visible, if i have the advanced plan as example, ...) 3. Sort the listings automatically by the package if the settings is activated (Basic Package as prio 1, Advanced Prio 2, Premium Prio 3, AD-Packages start at the priority that is set) 4. Automatical subscription-function, so the packages renew without the user buying it again.

Hi,

1. This is not available unfortunately, it would require coding modifications to achieve it

2. For now it’s not available, I’ll add it as a feature request. We will add more options for packages in the next update that will help you limit field selections based on the package you choose, e.g. for term fields you will be able to set a based on the package you select. This will also apply to repeater field, file field, related listings etc

3. Share some more details how you want this to work

4. This is not available unfortunately.

1. Okay, alright

2. This would be amazing, i am already exited for it, when is the next update planned?

3. So the admin can define which package will be which priority in the listings (e.g. Basic Package has the priority 0, Advanced Package = 1, ..) like with the AD-Packages but for the standard packages, so you can define the priority level for them too and if an AD-Package is booked you can define that it will use current-package-level + ad-level or smth. like that

4. Alright.

5. We have a bug, the locations (g-maps) works fine on the explore page, also in the admin-page, but in the “Add new Listing”-Frontend, you cannot add a location, the map is not shown and in the console is no error.

Hi,

2. It should be available by the end of next week

3. It’s a nice idea, right now not available but I’ll add it as a feature request

5. I replied in your other comment

HI we are looking to use your theme but we don’t use Elementor. Can this be uninstalled on MyListing Theme or even Voxel at all?

Hi,

Elementor is required, it’s not possible to run the theme without it unfortunately.

Error: body {font-family: arial; background: #ffffff; font-size: 8px color: white;}

Hi,

Open a ticket in helpdesk

Hi, I use the MyListing theme and I noticed that some displayed dates (for example months) are localized incorrectly when the site is configured in a different language than the dashboard language. In my case the dashboard is in Italian and the site is in English. In the events list on the site homepage the months string is displayed in Italian even though the site language is set to English. This is a bug and it only occurs on the homepage because in the single event page and in the quick view the month is displayed correctly in the site language. Help me solve the problem and I hope you schedule an update that solves the problem in the next theme releases

This is the print screen of the homepage, quickview and single listing event

https://snipboard.io/obGZEY.jpg https://snipboard.io/cKQnXw.jpg https://snipboard.io/2tX7o5.jpg

Hi,

Let me know the exact setup you have so I can debug this, so the site language is set to English. And how are you setting the dashboard language to Italian?

WP was installed in English and the dashboard was also initially in English. Then I changed the Dashboard language from Users, Profile and then Language

Do you have any news regarding the detected bug? Do you intend to fix it or not?

Hello, How to change the promoted and featured icon and icon colour. Many thanks

Hi,

Which icon do you want to use?

Hi,

Trophy for promoted listing and start for featured listing. Thanks

Try this css

.level-promoted .ad-badge i:before {
    content: "\e9e9";
}

.level-featured .ad-badge i:before {
    content: "\e838";
    font-family: "Material Icons";
}

/* colors */
div.level-promoted .ad-badge {
    color: #123;
    border-color: #123;
}

div.level-featured .ad-badge {
    color: #345;
    border-color: #345;
}

Hi,

Thank you for the custom feed function below. It’s working great.

```php add_action( ‘init’, function(){ add_feed( ‘listings_xml’, ‘my_listings_xml_feed’ ); } );

function my_listings_xml_feed() { header( ‘Content-Type: application/xml; charset=’ . get_option( ‘blog_charset’ ) ); $listings = get_posts([ ‘post_type’ => ‘job_listing’, ‘posts_per_page’ => 200, ‘post_status’ => ‘publish’, ]); } I’d like to ask: Is it possible to also include the following data in this feed?

echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?>';
echo '<listings>';
foreach ( $listings as $l ) {
    echo '<listing>';
    echo   '<title>' . esc_xml( $l->post_title ) . '</title>';
    echo   '<link>'  . esc_url( get_permalink( $l->ID ) ) . '</link>';
    // add more fields as you need…
    echo '</listing>';
}
echo '</listings>';

The featured image (post thumbnail)

The company logo (from the job listing metadata, if available)

The location (city or address from the job listing)

If yes, could you please let me know how to retrieve those fields correctly?

Thank you in advance!

Hello Team, I am working on a project for on tourism in a specific region providing valuable resources to visitors and supporting local businesses.

I will like to ask if your theme have the following feasures

Interactive Maps & Guides: Offer downloadable maps and self-guided tour itineraries.

Event Calendar: Maintain an up-to-date list of local events and festivals.

Business Directory: List local accommodations, restaurants, shops, and attractions.

User Engagement: Incorporate features like reviews, ratings, and forums for tourists to share experiences.

Multilingual Support: Provide content in multiple languages to cater to international visitors.

Your swift response will appreciated.

can you have all day events? Instead of specifying a time?

No reply?

Hi,

You can disable the timepicker completely for the event date field

Thank you for developing this theme!

1. Is it possible to display custom filters to certain user roles only? End users and company employees need to see different filters. If not, is it possible to extend the codebase with this functionality?

2. Yesterday, I’ve submitted a form under your profile (https://themeforest.net/user/27collective). I’m not duplicating my questions here because I hope someone will answer them soon.

Hi,

1. That’s not available unfortunately, it can be achieved with custom coding though

2. We will answer there shortly

Hi,

I am having problems with listing locations and work hours just like this documentation below:

https://docs.mylistingtheme.com/article/listing-locations-and-or-work-hours-not-working-post-update/

The recently downloaded version of theme is 2.1.1.9. Is this the latest? Your article mentioned version 2.9

I am not familiar of putting up the code snippets. Can you give more instructions, which folder that I can put in those codes?

Alexander

Hi,

Open a ticket in our helpdesk and we will help you with this

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