ZeroGravity
Forum Replies Created
-
@alanudi I am having the same problem.
Forum: Fixing WordPress
In reply to: Does Giving WordPress Its Own Directory keep page rank?Thanks @catacaustic. I prefer not to use too many plugins so my preferred method would be htaccess. I wasn’t certain that with WordPress redirecting as per http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory where the search engines would see the appropriate htaccess file, root or sub-directory. I will add the 301s in the sub-directory htaccess and see how we go.
I’ve read some articles that suggest submitting an old sitemap to Google webmaster tools after making the changes so Google will see that all the links have been redirected and update the index more quickly.
Forum: Fixing WordPress
In reply to: Does Giving WordPress Its Own Directory keep page rank?Does anyone have any thoughts on this?
Currently the URL is: http://www.mydomain.com/subfolder/
We want it to be: http://www.mydomain.comI just want to make sure that the way the codex recommends doing this will keep the page rank the site has built up.
Using a hook I added the code for YouTube example from the website and it worked.
<video width="640" height="360" id="player1" preload="none"> <source type="video/youtube" src="http://www.youtube.com/watch?v=nOEw9iiopwI" /> </video>Just need to get mediaelement-js-wp.php to output the code.
@drcrowley99 that will work but it isn’t using the plugin from what I can see on your site.
I have also tried every combination of options and YouTube links I can think of in the shortcode but cannot get the YouTube video to display. I just get a black box with a “Download File” link that links to the current page. This is what I currently have:
[mejsvideo src="http://www.youtube.com/watch?v=mtk5Ej-xLsM" type="video/youtube" width="570" height="321"]This would be absolutely perfect for what I have in mind. I have two instances of the player that interact. When one starts the other stops. But unless it works with YouTube I can’t use it.Sigh….
Gavin,
Just in case you haven’t seen the reply in the Gravity Forms forum here is a link to the solution. It worked perfectly for me.
http://www.gravityhelp.com/forums/topic/image-resize-options#post-121814Forum: Plugins
In reply to: [FAQs Manager] CSSI second this!
Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Add img title attributeThis will be great. I had thought about updating widget.php but didn’t want another plugin where I needed to keep track of customizations I had made. It becomes a bit of pain in the neck when update time rolls around.
I understand about having the title attribute on the link. Something I have noticed with Chrome and Firefox is if you have an image without a link around it they don’t display the alt attribute of the image. If you add a title attribute to the image as well up pops the text.
I have a dream. That one day all browsers will behave the same. Ok, back to reality. 😉
Forum: Plugins
In reply to: [FAQs Manager] [Plugin: FAQs Manager] First FAQ open when page loadsThanks @mailtintin, worked perfectly!!
Forum: Plugins
In reply to: [FAQs Manager] [Plugin: FAQs Manager] Accordeon does not displayI’m using the Genesis framework and @cvc1968’s fix (replace $ with jQuery) worked for my situation.
Ok, feeling like a complete goose!! I had changed the settings so it would ignore editors and admins. Of course I was logged in as an admin wasn’t I.
Do you have an admin login for your wordpress site? When you manually enter the UA code it should be in the first field on the settings page (Settings -> Google Analytics). If you are just trying to find out what the UA code is you can right-click on the webpage and select view source. The code should be somewhere near the top. If not look at the bottom.
If a page is not created within WordPress you would need to manually enter the code yourself on those pages.
I hope that helps and isn’t too late.
Ok, a two fold hack for widgets.php.
Line #262 remove  .
$title = apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);Line #307 change
echo $before_widget . $before_title . $title . $after_title;to
echo $before_widget; if (!empty($title)) echo $before_title . $title . $after_title;If anyone has a better solution I would love to hear it. This still should be fixed in the plugin so it doesn’t need to be reapplied after an update!!
I am having the same problem with the NextGEN Widget, not the slideshow. Now version 1.9.10 and this is still happeing. I found the similar line of code at #262.
$title = apply_filters('widget_title', empty($instance['title']) ? ' ' : $instance['title'], $instance, $this->id_base);I’ve tried commenting the line and removing the   (semi-colons removed so the test actually shows). All this does is give me a narrower title bar. Does anyone have any other suggestions?
This bug seems to have been hanging around for years. Come-on guys get it together and fix this!!
Forum: Plugins
In reply to: [Responsive Slider] v0.1.5 is broken: No "Add Slider" OptionIf Soliloquy is easier to configure than this I will definitely have to have a look at it. I chose this one because it seemed fool-proof for a non-technical client.