DERNERSERFT
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Ajax Issue for Add Media (Not All Images Load)Thanks for the suggestion, unfortunately it didn’t work for us. I tried a few media library plugins to get around the issue for now, and the Media Library Assistant plugin did the trick. Not an ideal solution though, hopefully WordPress core is fixed soon.
Forum: Plugins
In reply to: [YouTube Playlist Player] Uncaught ReferenceError: jQuery is not definedI updated a function in youtube-playlist-player.php and now it works.
function ytpp_pss() { wp_enqueue_style('ytpp', plugins_url('css/style.css', __FILE__ )); wp_enqueue_script('ytpp', plugins_url('js/ytpp-main.js', __FILE__ )); }
function ytpp_pss() { wp_register_style('ytpp', plugins_url('css/style.css', __FILE__ ), '', '', 'all'); wp_enqueue_style('ytpp'); wp_register_script('ytpp', plugins_url('js/ytpp-main.js', __FILE__ ), array('jquery')); wp_enqueue_script('ytpp'); }
Obviously editing the plugin is not ideal, so can you make that change in your next update? Thanks!
[pw_map address="New York City" width="100%" height="200px" key="#"]
I tried removing “&callback=initMap” from simple-google-map-short-code.php and that gets rid of the error message. However, nothing loads. When you inspect element, it only shows the script, nothing for the actual map.
<script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=false&key=#&ver=4.7"></script>
Forum: Plugins
In reply to: [Easy Testimonials] Testimonial Content Not LoadingThanks for your reply. I submitted a support ticket to Cohhe Themes about the issue, but haven’t heard back. I ended up switching get_the_excerpt to get_the_content, and it seems to working now (though I’m not completely sure why, haha).
Forum: Themes and Templates
In reply to: [Zap Lite] Google Maps APII was wondering the same thing. It’s in the Functionality for Zap Theme plugin. You need to update line 104 in class-zap-functionality-public.php.
wp_enqueue_script('zap-googlemap', '//maps.googleapis.com/maps/api/js?sensor=false&key=###', array(), '3', false);
Obviously this is not an ideal solution. Hopefully the developers update it.
- This reply was modified 8 years ago by DERNERSERFT.
Forum: Plugins
In reply to: [Job Manager] Archived Job Postings Still ActiveI got it working, hopefully this can help someone else.
On frontend-jobs.php, line 224, add this:
// Check that the job isn't archived if( $job->post_status == 'draft' ) $job = NULL;
Forum: Plugins
In reply to: [Job Manager] Archived Job Postings Still ActiveHey Rob, I’m having the same issue. Some of the expired listings show up in Google, and people can still access and apply from the direct link. Were you able to fix this? If so, could you tell me what changes you made to the plugin? Thanks!
Forum: Plugins
In reply to: [Awesome Weather Widget] Connection timed out after 5000 millisecondsI added OpenWeatherMap’s IP (192.241.169.168) to the server’s firewall whitelist, which solved the issue. Hopefully this helps someone else!
Forum: Plugins
In reply to: [Awesome Weather Widget] Connection timing outI’m currently experiencing the same issue. Do you believe it will resolve itself?
Forum: Plugins
In reply to: [Better Font Awesome] Activation error…It looks like my host uses PHP 5.2 and they’re unable to update it. Is there any way around this?
I don’t think it’s a compatibility issue with another plugin, because the only other plugin on the site I originally posted is Akismet. I used your plugin on three sites, and had the same issue for them all when updating to 5.3.8. with WordPress 4.2.2.
I needed it fixed asap, so I switched to Fluid Video Embeds if you want to check it out.
I tried reactivating the plugin, same thing:
https://i.imgur.com/LRyAzwn.pngForum: Themes and Templates
In reply to: [Virtue] Contact Template MissingGreat, thank you! I also noticed the subtitle no longer appears on my Shop page. Can you help me with that as well?
Forum: Plugins
In reply to: [Ultimate Product Catalog] Category Titles Disappeared?Thanks for the suggestion, jamkddr.
I noticed another issue (404 error) you guys may want to fix for future versions:
<link rel='stylesheet' id='upcp-sidebar-css' href='https://renown.dynasoft2000.com/wp-content/plugins/ultimate-product-catalogue/css/addtl/.css?ver=4.1' type='text/css' media='all' /> <link rel='stylesheet' id='upcp-pagination-css' href='https://renown.dynasoft2000.com/wp-content/plugins/ultimate-product-catalogue/css/addtl/.css?ver=4.1' type='text/css' media='all' />