monodistortion
Forum Replies Created
-
It looks fine to me. I can see the days of the week. The color is white with a gray dropshadow though.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] Not showing translation button / linksGlad I could help!
One thing you may want to do is change the background color of the language popup to something that matches your theme.
Excluding individual posts is pretty easy. In the next version the text field for excluding pages will exclude posts too.
Excluding categories would be more complicated. Why do you need to exclude a category?
Forum: Plugins
In reply to: Google Translator does not workMedialounge, is the plug-in installed now? Please start a new thread for your questions.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] How to move the translate link via jquerySorry to make you go through that work. There will be a new method to put the button anywhere within the WordPress loop in the next version (coming soon).
With your function it looks like you may run into problems with any page with multiple posts though, like the index page.
You can change the CSS however you like pretty easily of course.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] Not showing translation button / linksIt looks like there is a problem or problems with your widgets.
The Google AdSense widget is not closing all of its HTML tags. All the widgets below that are nested inside of it.
Then the text widget with the BlueHostAd also does not have its HTML tags closed. All the widgets below that are nested inside of it.
This is also breaking your footer so that it doesn’t show up.
Try fixing or disabling those two widgets.
The
style="display: none;"
is to hide the translate buttons if JavaScript is disabled or if the JavaScript doesn’t load properly.There isn’t an easy way to do this unless you want to change the php code quite a bit. The languages are in a popup so that it can display from 1 to 52 languages and it can move around a page to each post.
Forum: Plugins
In reply to: [Plugin: Audio Player] How to do loop modeDid you try the FAQ?
Forum: Fixing WordPress
In reply to: [Plugin: Google AJAX Translation] I do not see the link translationDwdonline, can you post a link to your page? The code all looks ok to me.
Does it work on the default theme?
Forum: Plugins
In reply to: Google Ajax Translation Action CallA custom function to put the Translate button anywhere within the WordPress loop is coming in the next version. See this thread:
https://www.ads-software.com/support/topic/342522?replies=9For your question– you should be able to do this with the next version. Let me know if you need any help with the code or css though. Thanks for the link to your site too! I like seeing interesting sites that are able to get use of this plugin.
Could you give me a link to your site? If I see the page I can tell you what the problem is.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] Doesn’t appear even in KubrickI looked at the HTML of your site. There’s something breaking the footer section since the page isn’t finished. The footer has a section called “Parallel Load Start” and then it says “Contact Form 7 Fix” and it stops there. This is causing this plugin to break since the translate popup window appears in the footer.
I would try disabling some plugins to fix your footer problem, like the Parallel Load Start plugin.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] Feature RequestI’ve been thinking of adding a widget to this plugin for a while but I haven’t come up with a simple, clean appearance for it that doesn’t get lost if there are already a lot of widgets.
For the time being you can try the widget that Google provides here:
https://translate.google.com/translate_toolsForum: Plugins
In reply to: [Plugin: Google AJAX Translation] Google Translate nofollowThere was only one link per page to Google. Did you see any others?
This is an easy change and it will be in the next version.
Forum: Plugins
In reply to: [Plugin: Google AJAX Translation] Not showing translation button / linksSorry for the delay.
I looked at the site https://www.degrendel.co.za/ and it looks like you’re using a copy of jQuery in the theme folder:
https://www.degrendel.co.za/wp-content/themes/degrendel/js/jquery-1.3.2.js
which is conflicting with the version of jQuery included with WordPress that is used by this plugin:
https://www.degrendel.co.za/wp-includes/js/jquery/jquery.js?ver=1.3.2The best way to avoid this kind of conflict is the use the enqueue function in your functions.php file to use the WordPress version of jQuery. See these pages:
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script
https://matty.co.za/2010/03/enqueue-javascript-in-wordpress/