Adam
Forum Replies Created
-
I saw hope in this but updated my sites to 5.6 and then 7.1 and still the plugin has issues
Adding another comment so I can get replies
It also broke many of the sites I manage, each having different errors. Ive deleted the folder and installed manually via FTP, same issue. When deleting and installing via WP upload, same thing. As soon as its activated the sites break again. Please FIX ASAP! Awesome plugin when it was working 🙂
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Export Postman SMTP Email LogIf you run this in phpMyAdmin then you can export as you wish…
SELECT * FROM wp_posts WHERE post_type = 'postman_sent_mail' ORDER BY ID DESCYou can also modify this to show submissions for a specific email by changing “post_title” to match the email subject of that email, for example…
SELECT * FROM wp_posts WHERE post_title = 'Website Contact' AND post_type = 'postman_sent_mail' ORDER BY ID DESCIn the above you would change “Website Contact” to the subject of your email.
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] "Column 'offset' cannot be null"?Also having this issue with 4.4.1
Forum: Plugins
In reply to: [Youtube Channel Gallery] Error API not working when updated PluginHey guys, I’ve fixed the issue for kennymikey and it was a combination of issues. Seems the plugin has updated shortcode attributes plus he needed the Google API key in place. Once that was in place we had caching on which needed to be cleared. All in all his new shortcode is working and as follows…
[Youtube_Channel_Gallery feed="playlist" user="PLvCasaEX4Cmo-9K2WVWoCd8DkAqujJIYb" cache="1" cache_time="24" videowidth="580" ratio="16x9" color="white" maxitems="18" thumb_width="333" thumb_ratio="16x9" thumb_columns_phones="2" thumb_columns_tablets="3" thumb_columns_md="3" thumb_columns_ld="3" title="1" key="AIzaSyA-97VcrZ8eRmMrpCULMphMIyJPRKOGrRM"]You can see a working example here – http://storyologystudios.com/web-series/book-smarts-crafts/
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Vimeo & YouTube not working with SSLThis is an easy fix, the developer needs to push this update.
Edit line 700 of the plugin file /inc/core/shortcodes.php so we remove the “http://” and just leave “//”, below is what my line looks like…
'" src="//player.vimeo.com/video/' . $id . '?title=0&byline=0&portrait=0&color=ffffff' .This is an easy fix, the developer needs to push this update.
Edit line 700 of the plugin file /inc/core/shortcodes.php so we remove the “http://” and just leave “//”, below is what my line looks like…
'" src="//player.vimeo.com/video/' . $id . '?title=0&byline=0&portrait=0&color=ffffff' .That’s easy, put the accordion in a div with the size set and add this to the settings under Accordion Tab next to Customize Initialization.
$( ".accordion" ).accordion({ collapsible: true, active: false, heightStyle: fill });If you use id=”accordion” on your accordion div then use…
$( "#accordion" ).accordion({ collapsible: true, active: false heightStyle: fill });If you still need help, contact us at http://www.mywebsitespot.com
Forum: Plugins
In reply to: [Email Alerts] Does not work with 3.4.2You get notifications for these events:
- a comment is added
- a comment is held pending approval
- a post is pending review
- a post is published
If you cant find a plugin that does what you need contact us at http://www.mywebsitespot.com and we can develop one for you that will.
Forum: Plugins
In reply to: [Email Alerts] Does not work with 3.4.2No its not. I was actually wrong though and forgot to come back and change. It does work, silly me, I had my email set in the general settings of WP which will always be emailed. This plugin allows you to have another user emailed and i have tested it works. Sorry for the confusion, thanks for the comment.
Forum: Plugins
In reply to: [TDO Mini Forms] [Plugin: TDO Mini Forms] Upload Widget Size IssueOk in include/tdomf-upload-functions.php I found 2 lines that will be of interest.
#551 – $height = 160 + (intval($options[‘max’]) * 30);
#553 – $output .= $after_widget;I have changed my lines to fit my form design however I would test it with your settings to make sure all displays fine. In line 1 I changed the height to 90 and line 2 i simply added // at the beginning to comment it out and stop the display of the closing fieldset tag. I would suggest that the owner update this widget with the ability to set the height in the options so the iframe is easily changed to remove the excessive spacing for the end user.