581 comments found.
Hello and congratulations for this excellent work. Two questions before purchase; 1. Is it possible for the administrator to limit registrations to certain cities? We want to work only on 10 to 15 cities of our country. 2. Is your theme fully compatible with WooCommerce plugins? thank you for your comeback
Hi,
Thanks for contacting us.
Unfortunately it is not possible to limit the registration to only certain cities 
In relation to the WooCommerce, it really depends on what are you going to use WooCommerce for. If you are going to use it for sales of your own items, then the answer is yes, it is compatible.
If you are going to try to allow the store owners to use WooCommerce to sell their products in connection to their listings, it would be hard to support that kind of functionality and it is not available out of the box.
Kind regards,
BoldThemes team
In fact, neither. Just allow companies to register only on certain cities where we have activities. So it’s basically in the registration form
Hi,
The registration form does not restrict the Google Maps API in that regards, so that option is not available out of the box 
Kind regards,
BoldThemes team
Hi, is it possible to have a url like this? /tattoo-shop/profile/
Hi,
If this is a listing category as part of the url, listing category as part of the url is not supported.
Kind regards,
BoldThemes team
Is it possible to add new listing categories? For example, if I wanted to list events that are happening in the city?
Hi,
It is possible to add new listing categories and to define custom fields for each category.
On the other hand, Bello is not suitable for events – different listings can not be mutually related – so you would have the event which is independent of its venue and would be in the same result list as event venues.
Also, the search can not filter out the events from the past by default etc, etc… So if you intend to use it for events, Bello is not a good choice.
Kind regards,
BoldThemes team
Ok thanks for the info and honest answer. Events wouldn’t really be integral to what I have in mind anyway – just something I was considering
1.) Is it possible to add views count to the listing? 2.) Is it possible to limit listing count according to package? – base package 1 listing, premium 10 listings etc 3.) How to translate custom fields?
Hi,
Thanks for the purchase. Please find the answers below:
1.) Bello theme does not offer that functionality. 2.) No, it is not possible to limit listing count according to package.
We are really sorry, but we are not sure what exactly do you mean by translating custom fields. Can you please submit a ticket at our support site – https://boldthemes.ticksy.com/ and leave the screenshot of the labels you wish to translate? Our support team will be glad to assist you.
Thanks in advance
Kind regards,
BoldThemes team
I am interested in buying this theme.
I am just wondering if it’s possible to show the listing cards within blog posts?
For example, if I was to create a blog post ‘10 Best Spanish Restaurants in London’ would I be able to embed the listing cards for individual Spanish restaurant listings within the blog post, instead of just adding a regular link?
When I say ‘Listing Card’ I mean the way an individual listing is shown in the demo homepage for example, with the business name, number, a photo etc shown on it.
It would be great if these could also be embedded within blog post content as well
Hi,
Yes it is possible.
You can do it in two ways:
1. Use Bold Page Builder for posts and then you can add any page element you want, just as on static pages
2. Use Gutenberg block editor for posts and add bt_bb_featured_listings shortcode to the post – it will do the same thing as placing it using bold builder.
Kind regards,
BoldThemes team
Great – thanks for the info!
Hi guys – is there an easy way to open an image in a lightbox? Is there a class or anything which can hook into Bello’s default lightbox facility?
Hi,
If you edit the image element in Bold Builder, on the second tab – URL, there is a property Target. There you can select Lightbox as an option. Leave the URL field empty.
That is the easiest way to add the lightbox functionality to your image.
Kind regards,
BoldThemes team
Hi thank you for your reply but it’s not on bold builder I’m adding it as html. Is there a class or something I can use?
Hi,
Ah ok, you can replicate the folowing structure:
<div class="bt_bb_image bt_bb_use_lightbox"> <a href="#lightbox"> <img width="2048" height="1366" src="image_thumb_url" data-full_image_src="image_full_url" /> </a> </div>
The a and img tags need to be in the wrapper with the following classes:
bt_bb_image bt_bb_use_lightbox
href property of a tag needs to be #lightbox and finally src and data-full_image_src contain urls of your thumb image and lightbox image. They can be the same if you wish.
Kind regards,
BoldThemes team
Awesome thanks so much
Glad it helped 
Hello,
I have interest in buying this theme.
Is it possible to have listed state/province and city/town on the website?
Further to have miles in kilometers. And how to list locations while searching.
I don’t know if this is customization.
Kind regards,
Owner of Tirom
Hi,
Thanks for contacting us.
You can have statically linked premade searches, meaning that you can link from the menu or banner specific search results, but there is no functionality to restrict search based on state / province as a category or tag – Bello does search on distance from desired location basis.
You can have either miles or kilometers – this is a theme setting.
Not sure what you mean by listing location while searching. You can register, login and submit your listing for approval by administrator.
Kind regards,
BoldThemes team
Hi, since PHP 8.0 the site has a critcal white screen. When i activate Woocommerce i’ll get the white screen, what to do? Hope to hear from you
Hi,
First, please check the versions of the Bello theme and Bello plugin. If they are not updated to the latest versions (1.7.6) – https://documentation.bold-themes.com/changelog/bello-changelog.txt
If they are not, please update them (including all packaged plugins) and check if the issue persists.
Kind regards,
BoldThemes team
Hi, Is there any filter where we can change the login redirection via the Login popup modal?
Hi,
We have escalated your question to our developers and we will get back to you ASAP.
Kind regards,
BoldThemes team
Hi,
You can use built in WordPress login_url filter https://developer.wordpress.org/reference/hooks/login_url/ in order to filter the redirect after login as you wish. Just make sure to add the desired query argument as redirect_to
Here is the original wp_login_url code https://developer.wordpress.org/reference/functions/wp_login_url/ which calls the filter.
Kind regards,
BoldThemes team
Hey thanks for your reply however I tried this but we are using Modal Popup for login form, and it redirects to home instead of the my account page. Can you help with that bit?
Hi,
Are you using the Modal Popup which comes with the theme?
Kind regards,
BoldTheme team
Hi correct yes it is.
Hi,
In that case you can do the following:
1. in bello plugin, in file inc/include_popup.php code on line 18
wp_localize_script( 'my-account-ajax-login-script', 'ajax_login_object', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'redirecturl' => esc_url(boldthemes_current_page_server_uri()),
'redirecturl_register' => esc_url($myaccount_page_url),
'redirecturl_lost_password' => esc_url($myaccount_lost_password_page_url),
'loadingmessage' => esc_html__('Sending user info, please wait...', 'bt_plugin')
));
can be replaced with:
wp_localize_script( 'my-account-ajax-login-script', 'ajax_login_object', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'redirecturl' => esc_url($myaccount_page_url),
'redirecturl_register' => esc_url($myaccount_page_url),
'redirecturl_lost_password' => esc_url($myaccount_lost_password_page_url),
'loadingmessage' => esc_html__('Sending user info, please wait...', 'bt_plugin')
));
It should do the trick.
Kind regards,
BoldThemes team
Hi, i have a ‘critical error and white screen since updating to PHP 8.0 do you have any idea what to do?
Hi,
The latest version of the theme, Bello plugin and other packaged plugins are compatible with the php8.
Please make sure to update the theme and plugins to the latest theme version – https://documentation.bold-themes.com/changelog/bello-changelog.txt
Kind regards,
BoldThemes team
Hi, is it possible to make a directory for multiple countries? Like a worldwide directory?
I’m also having an issue with the site logo in the top-left corner. It is text and not the images I’ver uploaded. I haven’t changed anything in the Bello theme. It’s pulling the text from Customize/Site Identity/Site Title. When I remove this, the logo space remains empty.
Hi,
Here is how the Settings generally work
The settings in the Appearance > Customize panel are global, meaning that they influence every page on the site by default.
On the other hand, you have an option to override these settings on a per page basis. If you take a look at the bottom of the page edit form, you will notice the Override Global Setting part in Settings Section – here you can override global settings for every page. This is the case with logos too.
On the pages with issues you probably have the logo override referencing a non existent bitmap url. Please remove logo related global overrides on pages with issues.
If this does not resolve the problem, please submit a ticket at our support site – https://boldthemes.ticksy.com/ leave your site url and wp-admin credentials and our support team will take a closer look at the current setup.
Also, should you have any additional questions in the future, please leave the ticket at our support site – https://boldthemes.ticksy.com/ and our support team will be glad to assist you.
Kind regards,
BoldThemes team
Hi can you remind me how the login section for the website will work? I’m trying find the link for how a user would login to manage their own account. If we try my-account it’s a blank page.
Hi,
The login section is actually a modified WooCommerce account page.
The slug of the account page needs to be defined in Appearance > Customize > Bello General Options > Listing My Account Page Slug
It also needs to be set up as the My Account Page on WooCommerce > Settings > Advanced, My Account Page field.
The static page set to be my account page needs to have the shortcode
[woocommerce_my_account][/woocommerce_my_account]
Our suggestion is to create a separate WP instance, install Bello and import demo content and check the working setup there as a starting point.
Should you need additional support in the process, please extend your support and submit a ticket at our support site – https://boldthemes.ticksy.com/ our support team will be glad to assist you.
Kind regads,
BoldThemes team
Thanks so much I got it working. one more thing – when users edit listings, is there a setting so admin has to approve it before it goes live or does it automatically update the listing?
Hi,
The user submitted listings can be optionally approved when created. But once created and approved, the edits are not subject for approval.
Kind regards,
BoldThemes team
Hi 1) does it allows to write EDITOR´s review and also divide review to more sections? (like service quality 8/10, food quality 5/10, clean 9/10, etc) ? 2) Can be set different custom search options for every ćategory?
Hi,
Thanks for contacting us.
1. Reviews are extended comments with a single 1-5 rating. You can not divide reviews to more sections out of the box. Editor comments are treated the same as other comments, so they are not “featured” in any way comparing to the rest of the comments.
2. Yes, search options can be set independently for each category
Kind regards,
BoldThemes team
Hmm thats bad news. Ability that listing site owners/editors can write own review of service provider and that review will be highlighted/featured above all other normal reviews is for me a must. Is there any chance you implement that feature in future?
Hi, do you have any idea why Google maps doesn’t work on www.tattooreviews.nl? I followed the steps and filled in the correct Api. Please help
Hi,
If you take a look at the JavaScript developer’s console, you can see that the Google Maps API returns the following error:
Google Maps JavaScript API error: RefererDeniedMapError
Here is the reference to the error:
https://developers.google.com/maps/documentation/javascript/error-messages#referer-denied-map-errorYou need to check with the Google what seems to be the problem.
Kind regards,
BoldThemes team
Hi there, i tried everything but i can see the background image on the homepage only on mobile. Do you have any idea how this is possible?
Thanks for the quick reply. The URL is www.tattooreviews.nl
Hi,
This seems to be a caching issue – you seem to be using WP Fastest Cache, and it seems to be serving different content for touchscreens and desktop screens.
If you take a look at the JavaScript console there is a number of JavaScript exceptions coming from the cached JavaScript on desktop devices (non touch devices).
Try purging the cache, and if the issue persists after that, try deactivating the caching plugin and see if the issue is resolved. If it is, you would have to contact the cache plugin author for help as we do not know the inner workings of the plugin 
Kind regards,
BoldThemes team
Thanks a lot for the quick help!!!! I’ve deactivate the plugin and that helped.
Hi,
Great, although deactivating the cache plugin might cause the slowdown of the site – depending on its current load. You should take a look at the plugin’s documentation or contact their support to check if there is a way to avoid this problem. Or use another caching plugin if there is a performance degradation.
Kind regards,
BoldThemes team
I want to extract business location data and descriptions from Google Maps with a scraping service. Is it possible to import and use that result file on the theme?
http://outscraper.com/google-maps-scraper/Or can I install API integration directly?
https://outscraper.com/google-maps-api/Hi,
Thanks for contacting us.
It is not possible to directly integrate the scraping service and the theme backend. You would need to create the importer that would properly map the fields from the scraping service output into the meta records within the WP database as they are specific to the Bello theme (as any other theme or plugin).
This is a fairly straightforward task, but keep in mind that it needs to be done on your side.
Kind regards,
BoldThemes team
hi, i just want to migrate my website to other server with this theme, but failed, i can’t install the theme anymore, please help ASAP
Hi,
The theme does not impose any restrictions in terms of website transfer, so the problem has to be either in the migration procedure or related to the hosting target environment.
What does it mean that you can not install the theme anymore? Do you get some kind of error? Is there a related entry in the php error logs?
Kind regards,
BoldThemes team
when i tried to upload and install the theme, this message came out:
The link you followed has expired.
Please try again.
what should i do?
Hi,
This kind of error is most likely related to the following: WordPress hosting companies have a setting which controls the size of files you can upload from inside the WordPress admin area. They also have a setting which stops scripts from running too long.
You can either install the theme by FTP or you can increase the limits for the maximum file size if possible. Please refer to the following article for details if you want to increase the limits:
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress/Also please make sure that other recommended server settings are implemented on your hosting:
Kind regards,
BoldThemes team
Great theme, we’re looking to purchase a listing theme.
Any chance as a CSS designer with basic understanding of PHP can self-customize the listing page?
https://bello.bold-themes.com/main-demo/listing/dental-plus/Hi,
Thanks for contacting us.
It is hard to answer that question – it really depends on the level of self-customization. In general it should be possible.
If you wish to give it a try, please note that we offer a money-back guarantee meaning that we will refund you in case that the theme does not meet your needs.
Kind regards,
BoldThemes team
Is the image still fixed size or ratio? I used to use this theme. However I found the image size or ratio is fixed for the theme? the website looks a great mess, I have to cut each image as fixed ratio. Is this feature changed in the new version?
Hi,
If you are referring to listing search result images, the autogenerated thumbnail 640×427 is used (regardless of the original image size). The thumbnail is auto generated by WordPress when the image is uploaded into media library – so please inspect the images in the listing search results and check if their names end with 640×427.
If they do not, there can be two reasons for this. Either original images are smaller than 640×427 – so the thumbnail can not be auto generated by WordPress, or the respective images were not generated upon upload for some reason. If latter is the case, you can use plugins such as https://wordpress.org/plugins/regenerate-thumbnails/ or similar to automatically generate required thumbnails.
Kind regards,
BoldThemes team
thanks a lot