cmstactics
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Where does the Debug data go?Were you able to find out the answer to this? I’m interested too.
Forum: Plugins
In reply to: [WooCommerce] Product page not highlighting in menuThanks for this quick function but for my theme I had to include the “active” class as well. Therefore, the classes array line looks like this for my theme:
$classes[] = 'current-menu-item active';
I’ve been able to deminify your javascript for the store-locator.js file and able to find the searchLocations() function that gets called when the Find Locations button is clicked. If I am able to get the address from the input as such:
var address = document.getElementById(‘addressInput’).value;
and check that the address is blank, what do I need to do to reset the map and show all locations as if I just reloaded the page? How do I clear the auto locate functionality as well?
if(address.length == 0) {
//some code here to clear auto location coordinates and allow map to load with all location markers.
}Forum: Plugins
In reply to: [WP Offload SES Lite] Forgot Password Email Not WorkingI ended up verifying the domains as well in AWS SES and after a while it allowed emails to be sent via the verified domains whereas the API Keys didn’t allow the forgot password emails to be sent. Maybe this can help others to also verify the domains as a backup.
Forum: Plugins
In reply to: [Store Locator for WordPress with Google Maps – LotsOfLocales] Admin ErrorsI was able to fix the geocoding by updating one of your lines of code.
In sl-functions.php line 1205:
I changed this
$update_result = mysql_query($query);
to this
$update_result = $wpdb->query($query);I still have the admin bar missing but I no longer have the Access denied warning message.
Forum: Plugins
In reply to: [Store Locator for WordPress with Google Maps – LotsOfLocales] Admin ErrorsI moved servers and the site using the plugin is now using Amazon Web Services Ubuntu 14.04. Could it be an AWS setting that I need to enable?
I’m also noticing that the geocoding is no longer working either. Can this be a server issue as well?
Forum: Plugins
In reply to: [WP Video Posts] Videos upload but do not playHi NES, it seems that Flowplayer doesn’t want to load to play your mp4 video. We have an option in our newly updated plugin which adds support to have the option to use HTML 5 video. In upgrading to the current release, 3.0, your video is not playable. Let us know if this meets your needs.
Forum: Plugins
In reply to: [WP Video Posts] Bad file passed to ffmpeg in MultisiteHi Murmansk,
Thank you for your post but unfortunately we have never performed any testing on a multisite so our plugin most likely won’t work on a multisite as you have experienced. We would need to update the plugin to detect if multisite is enabled and determine the site id so that the uploaded video can be uploaded, encoded and stored to the correct directory. Sorry for the inconvenience.
Forum: Plugins
In reply to: [Captain Slider] Caption hidden on first slideForgot to add the reference to the file:
wp-content/plugins/captain-slider/includes/css/flexslider.css
Hope this helps!
Forum: Plugins
In reply to: [Captain Slider] Caption hidden on first slideHi Caleo,
I was able to fix this problem in my case. The first thing that I did was to remove the display: none; css attribute from here:
p.flex-caption { margin: 0; margin-bottom: 0; display: none; font-weight: bold; }
This showed the caption on loading the page for the first slide. Also, I had an issue where the image on the first slide expanded outside the container on the bottom so I adjusted all my images to be the same size and now it is working nicely.
Forum: Plugins
In reply to: [Captain Slider] slide imageUpdate, I was able to add the following in functions.php to get the featured images to work with captain slider:
add_theme_support( 'post-thumbnails' );
Forum: Plugins
In reply to: [Captain Slider] slide imageHi Lisawebb01, what did you change in the functions.php to get the featured image to work?
Hi Mike,
Sorry for the delay in responding to your issue. We do have some lines for debugging in the code that is currently commented out. If you are familiar with PHP you can look into the files and change the error logging file path to view it. The file with logging is titled wpvp-functions.php. Otherwise, we can look into your issue for you if you provided credentials. You can email me at [email protected] to provide private information. At first, I would think it is a permissions issue but since you are successfully saving the splash image then it doesn’t seem like that is the issue. The other issue is that when the file is uploaded, the code renames it and removes the originally uploaded file as it is now in MP4 format.
Hi Lacy,
Sorry for the delay as we just say your post. We recently discovered that we are pointing to run the FFMPEG command in a specific path in which we thought was a standard but some hosting providers choose to install it in a different path. In addition, we don’t have default values set for video width and height for the custom post. We are going to update that and hopefully this will be your fix. If it isn’t then we can supply you with dedicate support.–Kaysten
Hi Sinan. We tried reproducing your issue on our server with a sample .mov file and we didn’t have any issues. We sent you an email to assist you in solving your issue and after we help resolve your issue we can post the solution here for others to view.