stevegmag
Forum Replies Created
-
Forum: Plugins
In reply to: [Map My Posts] Moved to production site, map loads then stopsThis is killing me…
- Works great without API on dev server on 1and1; breaks with or without API on production on bluehost…
- Installed on a new 1and1 plan and I swear it was working until I pointed the Domain (hosted at goDaddy) and it died. — could there be a domain issue?
- I did the manual key addition to the header… I got the double key message too.
- When I add a simple call to googlemaps it works:
<div id="map" style="height: 700px;"></div> <script> var map; function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: {lat: 47.16249, lng: 19.50330}, zoom: 8 }); } </script> <script src="https://maps.googleapis.com/maps/api/js?key=DaKeyGoesHere&callback=initMap" async defer></script>
- When I added both the simple call and the short-code for my maps I get an error that the page contains two maps..
- so interestingly the [mmp-geochart mode=”marker”] && [mmp-geochart mode=”region”] work fine…. ???
- anyone from the plugin developer looking into this at all?
Forum: Plugins
In reply to: [Map My Posts] Google apiso interestingly the [mmp-geochart mode=”marker”] && [mmp-geochart mode=”region”] work fine…. ??? anyone from the plugin developer looking into this at all?
Forum: Plugins
In reply to: [Map My Posts] Google apiThis is killing me…
- Works great without API on dev server on 1and1; breaks with or without API on production on bluehost…
- Installed on a new 1and1 plan and I swear it was working until I pointed the Domain (hosted at goDaddy) and it died. — could there be a domain issue?
- I did the manual key addition to the header… I got the double key message too.
- When I add a simple call to googlemaps it works:
<div id="map" style="height: 700px;"></div> <script> var map; function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: {lat: 47.16249, lng: 19.50330}, zoom: 8 }); } </script> <script src="https://maps.googleapis.com/maps/api/js?key=DaKeyGoesHere&callback=initMap" async defer></script>
- When I added both the simple call and the short-code for my maps I get an error that the page contains two maps..
Forum: Plugins
In reply to: [Map My Posts] Google apiI’ve added an api key as well. no luck (on bluehost).
I’m trying to use Members for the access control over Toolset Types, as their Access Control bit is hierarchal (which doesn’t really fit in with custom types at all, but this isn’t the place to bitch about that).
If I have Toolset Access Control (TAC) disabled I don’t see any of the custom types in the Members Role editing form.
If I activate TAC I don’t see any types in Members unless I set “Manage by Access” for the type in TAC… then I can see read/edit/delete/publish options, but they don’t seem to do anything. If I then, deactivate TAC, the setting remain in the ALL tab of Members, but I don’t see the types available anymore… and it still doesn’t appear to allow me to set a roles to edit specific types.
I’ve been messing with various setting between the two to try to get them working together with no luck. What am I missing?
Also, if I need to clean all this up… where are the Members settings stored in the DB?
If I add
?width=640&height=480
to a link with a page-target (#video-1) it starts the lightbox, but just spins and never loads the html code with video.<a href="#video-1?width=640&height=480" rel="wp-video-lightbox" class="no-click-video">16-minute Defeating Distracted Driving video</a> <div id="video-1" style="display:none;"> [video width="690" height="400" mp4="https://dev-cvsa2.accelerantsandbox.com/wp-content/uploads/D3_TV_PSA_1_HQ.mp4"][/video] </div>
It opens the video in a lightbox on the same page as the link and in a new tab/page with a single click.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Where Clause does not workI can’t use a custom field in the where clause:
[pods name="news" orderby="news_date DESC" where="remain_top_list ='1'" limit="-1" template="News Listing Item" pagination="true"]
remain_top_list works as an orderby clause, but not as a where clause.
(it also breaks if I try 2 orderby clauses)Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] past keyword not working ?I have 4 blocks pulling one event from each of my 4 main categories… sample:
[ecs-list-events cat='cat-1' limit='1' order='DESC' key='startdate' past='no' viewall='false' thumb='true' contentorder='thumbnail, title, date']
Unfortunately, I’m getting events from the past though. I only want event that are upcoming… where am I going wrong here?