ZeroGravity
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Lightbox] Lightbox description from shortcodeThanks! I had noticed it was possible using HTML and was hoping the same would be available via the shortcode.
My client isn’t 100% tech savvy. They can add the shortcode but using HTML is a little beyond them at the moment.
It would be a nice addition to the shortcode. 🙂 Feature request. 🙂
Forum: Plugins
In reply to: [Broadcast] Super Admin rights, Canonical URLs, Child Post ReadonlyThanks Guys! I think we can call this resolved now. I shall have to see if my client is prepared to go for the Premium pack to cover #1 and #3.
Forum: Plugins
In reply to: [WP Video Lightbox] No YouTube full screen button in ChromeJust to make sure we are looking at the same thing here is a screenshot from Firefox.
I have circled the full screen button in red. If you look at my previous screen shot from Chrome you will see the full screen button is not there.
Forum: Plugins
In reply to: [WP Video Lightbox] No YouTube full screen button in ChromeThanks for the quick reply.
It was on “39.0.2171.71 m” and it updated to “39.0.2171.95 m” when I checked the version. After updating the full screen button still didn’t show. I see the full popup but the full screen button that should be next to the YouTube button in the bottom right corner is missing in Chrome. It is there in Firefox and IE.
I have tried on a XP desktop, Win 7 desktop, and a Win 7 laptop.
Here’s a link to a screenshot
Forum: Plugins
In reply to: [Genesis Featured Page Advanced] Blank paragraph at top of page exerptNo Worries, understand. Just curious. 🙂
Forum: Plugins
In reply to: [Genesis Featured Page Advanced] Blank paragraph at top of page exerptYep, I’m the difficult one who adds lists and other HTML into custom excerpts. 🙂
Have you every considered extending the plugin to include post and/or custom post types?
Thanks
DarrenForum: Plugins
In reply to: [Genesis Featured Page Advanced] Blank paragraph at top of page exerptThanks for your quick response Nick!
I’m wondering if I may have inadvertently discovered the problem. But first here are the answers to your questions.
1) Enterprise Pro 2.1.1
2) These are the settings I used and have checked. Others are unchecked.
* Title
* Feature a Page
* Show Featured Image
* Image Size – featured-image
* Img Align – Center
* Enable Image Link – checked
* Show Page Excerpt
More Text – “[Read More…]”3) I added this code to functions.php
//* Add excerpt support for pages */ add_action('init', 'my_custom_init'); function my_custom_init() { add_post_type_support( 'page', 'excerpt' ); }I am wondering if this may have been the cause. I didn’t know that paragraph tags were being added automatically and I placed them around the first paragraph in the page excerpt. This gave the blank paragraph at the top of the widget. When I removed the paragraph tags from around the first paragraph in the excerpt the blank paragraph disappeared.
Could this actually be a WP issue instead of the plugin?
Thanks
Darren@kyawzinwin the last post in the link you provided works but it is applied to all roles. It would be nice to be able to do this via the AAM system and have it applied only to a specific role if needed. This solution needs to be applied in functions.php and not everyone is up to that.
For the appearance menu you need to enable the various theme capabilities under the “Capability” tab.
Thanks Simon. I enabled Universal tracking under the universal tab and the error has gone.
Forum: Plugins
In reply to: [Random image gallery with pretty photo zoom] mt_rand(-1) errorThis error is related to my previous post.
****************
Line 158 in random-image-gallery-with-pretty-photo-zoom.php and line 36 in select-random-image.php checks twice for GIF images.
if(strpos(strtoupper($file), ‘.JPG’) > 0 or strpos(strtoupper($file), ‘.GIF’) >0 or strpos(strtoupper($file), ‘.GIF’) > 0 )Should be
if(strpos(strtoupper($file), ‘.JPG’) > 0 or strpos(strtoupper($file), ‘.GIF’) >0 or strpos(strtoupper($file), ‘.PNG’) > 0 )Forum: Plugins
In reply to: [Random image gallery with pretty photo zoom] Checks twice for GIF, no PNGThis has still not been fixed in the latest version
Forum: Plugins
In reply to: [Random image gallery with pretty photo zoom] eregiLooks like this has been fixed using
strpos(strtoupper($file)Forum: Plugins
In reply to: [Ultimate Modal] Once per sessionI was going to use your plugin on a multi-site multi-language installation for people to select the language they want to view and redirect them to that site. The plugin needs to be active every time the main site home page loads for this to happen.
I also understand your logic behind only having it work once per day, but couldn’t that be up to the person using the plugin rather than forcing it upon them.
Forum: Plugins
In reply to: [Random image gallery with pretty photo zoom] Duplicated LightboxI was able to do this but you need to edit core files. Make note of the changes because you will need to reapply them if you update the plugin.
1) edit select-random-image.php about line #57.
Remove rel=”prettyPhoto” from the anchor tag.2) edit random-image-gallery-with-pretty-photo-zoom.php about line #27
Change:global $ScriptInserted; if (!isset($ScriptInserted) || $ScriptInserted !== true)to
global $ScriptInserted; // disable loading of pretty photo jquery $ScriptInserted = true; if (!isset($ScriptInserted) || $ScriptInserted !== true)This prevents a prettyPhoto jquery script from being added to the web page header.
3) edit random-image-gallery-with-pretty-photo-zoom.php about line #387 (at the bottom).
comment out the line add_action(‘wp_enqueue_scripts’, ‘rigwppz_add_javascript_files’);
This will stop the prettyPhoto libraries from loading.Hope that helps. I gather the author doesn’t follow the support here because I haven’t ever seen a reply from him.