theresel
Forum Replies Created
-
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Date not translated on sent newsletterJust to update my last post… I had to revert back to Version 2.5.06 of ALO Easymail for my frontpage to display correctly… but the date is still not translated in the sent newsletter. I’m using the latest version of WordPress and Qtranslate-x. This is somewhat annoying as I can not update the plugin without breaking my frontpage display.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Date not translated on sent newsletterAnother bug I found with the new version is the homepage… I’ve set my homepage to be a static page “Home”… but when the ALO Easymail plugin is active the home page in English is still “Home”, but the homepage in French goes to my posts page… Is there anything I need to change to solve this issue?
Forum: Fixing WordPress
In reply to: Desperate: Please Help With Base64 CodeI had the same d#*n virus infect one of my sites and it kept coming back even though I deleted everything and uploaded a fresh copy of my files to the public_html folder….. Up until I realized that a copy of all my files was also in the www directory. So I deleted everything from the “www” directory and the “public_html” directory and uploaded a fresh copy to both directories.
Also, make sure you check all your files on your computer or in your backup, as I was sending it back to the server without knowing it.
You can have more than 10 entries per page and order them alphabetically by replacing the loop in your posttemplate files with this:
<?php $posts=query_posts($query_string . '&orderby=title&order=asc&showposts=40'); if (have_posts()) : while (have_posts()) : the_post(); ?>
The number 40 can be adjusted to your preferences. This workaround works for me.
Forum: Plugins
In reply to: Events Calendar 6.6Anyone with the same problem????
Forum: Fixing WordPress
In reply to: image galleryI use nextgen gallery and find it very easy to use. You can find it here: https://www.ads-software.com/extend/plugins/nextgen-gallery/
Forum: Fixing WordPress
In reply to: French home link going to english siteFound my solution. I am using qTranslate with my site and a theme made with Artisteer. I just added qtrans_convertUrl in front of the get_option(‘home’) part in functions.php. For anyone interested:
In functions.php find the get_option(‘home’) under:
function art_list_pages_filter($output) – OR – function art_menu_items()
and replace it with: qtrans_convertUrl(get_option(‘home’))
This solution worked perfectly for me and the home link is now redirecting to the correct language.
Forum: Plugins
In reply to: Dagon Design Sitemap Generator PluginI’m using it also and named my page sitemap and it works perfectly, all the pages and posts appear along with the XML sitemap link. Maybe something in the options that you forgot to select??
Forum: Fixing WordPress
In reply to: ADD new pages to RSS FeedSearch the plugins directory for rss-includes-pages. It’s a plugin that once activated will add all your pages to the RSS feed on your site.
Forum: Fixing WordPress
In reply to: multi-lingual content?With the qtranslate plugin, you can have your wordpress site in any language. There’s also a widget that you can put in your sidebar for visitors to chose their own language. Search in the plugins directory for qtranslate.
Forum: Fixing WordPress
In reply to: Bookmark Us ScriptAnyone??
Forum: Fixing WordPress
In reply to: Bookmark Us ScriptOops, here’s the code in the head section:
function bookmark_us(url, title){ if (window.sidebar) // firefox window.sidebar.addPanel(title, url, ""); else if(window.opera && window.print){ // opera var elem = document.createElement('a'); elem.setAttribute('href',url); elem.setAttribute('title',title); elem.setAttribute('rel','sidebar'); elem.click(); } else if(document.all)// ie window.external.AddFavorite(url, title); }
And here’s the link code:
<?php echo sprintf(__("<a href=\"javascript:bookmark_us('https://www.carnavalhearstcarnival.com','Carnaval de Hearst Carnival')\">Bookmark our site!</a>"), __("Bookmark our site!")); ?>