Paolo
Forum Replies Created
-
AuthorPosts
-
Hi Brian,
please try adding this to the top of your child theme functions.php after the opening php tag
error_reporting(E_ERROR);
It should stop that.
Let me know,
Justjim URL problem was solved and the solution is available on the forum.
He had permalink settings without the final trailing slash.
/%postname%
instead of
/%postname%/
To avoid getting such warning, you should turn debug off or only log them and avoid to print them on screen.
Being that a warning and not an error, it will not prevent your website from working correctly.
Thx
You can add this to your media queries:
.cancle_button { clear: both; float: right; }
Let us know,
Thx
July 29, 2014 at 7:55 pm in reply to: Imported Listings, now they all show 404 unless I update each individually?? #10253excellent, good to know! 🙂
I use Places for Attractions in our demo and I see no problem at all.
Thx
GLad we solved…
whenever I can, I try to also help for things that are not directly related to our products, but whenever you have “general wordpress issue” like I told you this was, it is good to know that you can get a superior level of support in the wordpress.org forums.
Thx 🙂
Hi,
it should be possible to dequeue the original map and enqueue a new copy of the js file from your child theme. However I have been only partially successfull in doing so.
I’ll have to ask Vikas to have a llook for us.
THx
Hi,
1) not using GD wrappers, but avada wrappers, those width settings can’t have any effect. Avada doesn’t allow to manipulate width of it’s pages content, so only an extra css rule can work there:
.home #content { width: 100%; }
or replacing a function in your function.php file to force home to be full-width:
replace
// WRAPPER CONTENT OPEN FUNCTIONS function gd_avada_action_wrapper_content_open($type='',$id='',$class=''){ if($type=='signup-page') { echo '<div id="content" class="full-width">'; } else { echo '<div id="content">'; } }
with
// WRAPPER CONTENT OPEN FUNCTIONS function gd_avada_action_wrapper_content_open($type='',$id='',$class=''){ if($type=='signup-page' || $type=='home-page') { echo '<div id="content" class="full-width">'; } else { echo '<div id="content">'; } }
At the moment I’ve added the second option…
2) The widget by default displays the entire excerpt (this is a bug). Only after saving it applied the 20 carachters limit. I saved on your detail page and you can check it.
3) This was a bug in GD plugin that I reported to developers. I’ve quickly applied a fix in geodirectory > design > script > Custom style css code:
.gridview_onehalfclearfix { overflow: hidden; }
Let us know if eevrything now is working as expected or if you have any other questions.
Thx
Hi,
I’ve flagged this for the devs. They are both off for the night now (India and UK) they will be most likely start testing tomorrow morning their time and I hope answer asap.
Thx
Hi,
in GeoDirectory > Desig > Home
all widgets area are disabled. (see capture)
This way you can’t add widgets anywhere to pull content (map, listings, whatever…) and the location page appears to be blank.“Listing prefix to show in url” for Listing url prefix and “Prefix to show in location url” for Location url prefix?
yoursite.com/location/united-states/california/san-francisco = location URL
yoursite.com/places/a-category-name = Listings urlThere is no way to scroll that list. It presents just the first few results for quick selection, but the real filed there is the search with autocompleter. (see capture1)
Thx
Hi,
I’ve quickly checked both po file and the language.php file or prices and payments addon and everything seems in order. Can’t find a reason why it wouldn’t work…
I’ve flagged this for Stiofan to look into it.
Thank for your patience.
July 28, 2014 at 5:50 pm in reply to: (0) next to categories in popular post category widget? #10158you’re welcome! 🙂
Hi,
do you have multiratings installed? If yes, you need to set it up to show ratings.
Go to geodirectory >> multiratings
and adjust settings.
If you disable it, you will see regular stars appearing.
Let us know,
Hi,
there is no way the theme is removing menu items. That’s probably a suhosin issue.
You’ll find plenty of articles talking about that: https://www.google.com/search?q=suoshin+wordpress+menu
As for the 3rd level menu item. Stiofan already fixed it. You are currently using GDF 1.0.3, while latest version is 1.0.5
Thx
-
AuthorPosts