khosh
Forum Replies Created
-
Stella works fine with Nextgen 1.9.13 but not newer version. I did a rollback (although it’s not recommended), it was the best solution for me and my customer. Otherwise I would’ve had to migrate all the site information in from Stella to WPML.
I’m experiencing the same problem. One of my clients is using Stella and NextGen and this problem occurred during a recent update of either plugins or WordPress. She’s done the updates herself so I don’t know what could have caused it.
The gallery displays as it should when viewing a page in the default language, but when switching to another language the message “Gallery not found. Please check your settings.” appears. Stella adds the language prefix to the URL. Could that be the problem?
Forum: Fixing WordPress
In reply to: Got Hacked by BadiThe same has happened to my. I got three sites hacked, but only one fully. The two others only got char set changed to UTF-7.
Here’s more on the topic.
Forum: Fixing WordPress
In reply to: Got Hacked by BadiI had the same problem. A few of my customers who were all on the same server got hacked. The page presented a white blank background with the text “Hacked by Badi”. It was an overlay text widget and easy to delete.
The hack seemed to mess with the encoding. Umlauts weren’t presented correctly but a forum posted the tip to edit out following line in wp-config.php:
// define('DB_CHARSET', 'utf8');
This worked for me as well. Going on to changing all passwords…
Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsIs it so that translating Categories only comes with the full version of Stella?
Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsI feel so stupid. I must have been tired when I posted the question. The problem is that the submenu is child categories to the category being viewed and there is no setting option to translate category titles ??
Any idea how I should solve it?For clarification:
When viewing a certain category, all child categories should be displayed and in English, not the default language Swedish.Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsI’m using Stella version 1.3 build 42 and calling the code in header.php. Swedish is the default language and English is the secondary. Stella is activated, because everything else is working fine and all posts are showing in the chosen language, but calling wp_list_categories only shows the titles in the default language..
Any ideas?
I’m having this same problem, but I haven’t found a solution to it.
Forum: Themes and Templates
In reply to: Automatically scroll down to contentI’m building my theme on Sandbox, so
<?php sandbox_globalnav() ?>
is outputting the navigation menu.But I figured it out ??
I’m using this javascript in the head:
<script>
function goToAnchor(nameAnchor) {
window.location.hash=nameAnchor;
}
</script>I want to jump to the anchor on every page except the home page, so I use this:
<body class=”<?php sandbox_body_class() ?>”
<?php if (is_front_page()) {
echo ” “;
} else {
echo “onLoad=\”javascript:goToAnchor(‘content’)\””;
}
?>>Like everything else there probably exists another solution, but this seems to work well.
If I would add the anchor to every page link in the navigation menu I wouldn’t get the jump effect to any posts, which I now do.
I wouldn’t have wanted this solution, but my customer did. I could of course made the header smaller and pulled the page together a bit, but we both liked the design, so we went with this.
It’s no online at blauefrau.com.
Considering it’s my first WordPress site I’m quite satisfied. Luckily I’ve learned a lot on the journey, so the next site I make will probably be a lot better and easier to make.
Forum: Themes and Templates
In reply to: Automatically scroll down to contentBut the thing is that I want to assign the anchor to the links in my navigation menu and those links are created automatically. That way the visitors scroll down past the large header immediately when clicking on any other navigation link except for the main page.
One way would be to write the menu from scratch into header.php, but then it will be a bit more tedious changing any pages or titles. On the other hand the titles of the pages will not probably change…
JavaScript + php that recognises which page is loaded?