Simone
Forum Replies Created
-
AuthorPosts
-
Hello, it’s most likely a permission issue, try to set 777 to the uploads folder (just to see if it’s a permission thing)
September 20, 2014 at 4:14 pm in reply to: How to exclude GeoDirectory listings from RSS feed? #15972Hi Tom, you could do something like this:
function myFeedExcluder($query) { if ($query->is_feed) { $query = new WP_Query( array( 'post_type' => array( 'post', 'page' ) ) ); } return $query; } add_filter('pre_get_posts','myFeedExcluder');
in this case, $query will have only posts and pages.
Not tested thou, should be workingYes, you can add a custom field named County in the post type settings,and then join in the Advanced Search Tab you can add it to the search filters
You can do that, you just need to wait for the drop down to load, I’ve added Vancouver now
edit: you figured out just a minute before I was about to write 🙂
Hello, to lock the region/city/country you need to edit the setting in the multi location. (Geodirectory/multilocation)
If you enable the default city/region/country, the drop down will not appear and it will force the user to choose an address in the default cityThis reply has been marked as private.Hello, could you please write us your URL?
Taxonomy field is supposed to have the html variable name (which is used by the database), but this field seems to be missing.
I will summon Stiofan.Hello Peter, please set the permalinks in your WordPress to, at least, post name /%postname%/
Hello,
@zauberer: honestly, I use multiple values without spaces after the comma, about the ZIP code, you can create a text custom field but…why don’t you use the “search by distance”?
About the conditional field, that’s not possibile@thebirdiemachine: yes sure I can try
you can increase the h1, h2, and h3 values in your style.css (in your child theme folder), just add the values
h1 { font-size: 25px !important; } h2 { font-size: 28px !important; } h3, #simplemodal-container h3 { font-size: 18px !important; }
feel free to adjust the font size
Hello, if you look at the style.css, you will see that
h1 is 25px, h2 is 28px, h3 is 18px.
Can you post your URL so we can have a look please?Hi, I’m afraid but categories need to be there before importing any data. What could you do is to play with the database and see if you can create them using sql (obviously this involves some SQL knowledge).
ps- I’d happy to be wrong about that
September 17, 2014 at 8:32 pm in reply to: Need online product to convert Addresses (lots) to Long & Lat #15759Hello Stacey, I use this website and it’s great.
if it’s a checkbox, 1 is “Yes” and 0 is “No”
No, these values are for the CSV upload, for the optional values there is the description below the field, explaining how to use them. If you are using multiselect you can just use “value1,value2, etc”, if you are using a tick filter, just use value1/1,value2/0 and this will be value1 if thicked and value2 if not ticked
-
AuthorPosts