bechster
Forum Replies Created
-
Forum: Reviews
In reply to: [SyntaxHighlighter Evolved] Executes code!!!I have a similar problem. Suddenly it started parsing HTML tags – removing
<p>tags as is the standard behaviour in TinyMCE – which it shouldn’t. It used to work, though.Maybe this is due to a WordPress update down the line?
danbodenstein’s fix (https://ww.wp.xz.cn/support/topic/new-users-email-not-sending-password?replies=21#post-7331640) worked for me.
Hi,
It works. Thanks for fixing this issue. 🙂Hi,
Please excuse my impatience, but I just can’t help asking. Is this issue still somewhere in the pipeline? I really do miss my sticky posts. 🙂
Thanks again.
Others have this problem too:
http://ww.wp.xz.cn/support/topic/event-calendar-stops-sticky-posts-working-with-woo-canvas?replies=3#post-5025375It is giving me a bit of trouble, though, so I hope someone can come up with solution soon. Thanks.
This is a general issue with The Events Calendar and sticky posts and is not related to the Canvas Magazine theme in particular.
Just to sum up, I previously described the issue in this thread.
Hi,
Just a quick heads up to let you know that I have updated the Danish translation for The Events Calendar version 3.0.3.Same link as above.
Hi roblagatta,
I just updated it. It is 2.0.9 ready now. Feel free to go grab it.
And by the way; thanks for the offer. 🙂
Forum: Fixing WordPress
In reply to: Jetpack Contact Form – Sending to multiple email addressesI’m having exactly the same question. Is the Jetpack contact form able to send email notifications to multiple recipients? I really need it to do that.
Thanks.Forum: Plugins
In reply to: [Flexible Widgets] [Plugin: Flexible Widgets] Issues with getting it workingHi,
The HTML mark up of the front end in Flexible Widgets is similar to the mark up of the default WordPress widgets. The Flexible Widgets have no custom styling so that may explain why they look to be default widgets in the front end. However, if the widgets show up on each and every page like the default widgets, even if You have set a page or category in the settings, or if they don’t show up at all, then obviously there is something wrong.
It should work with WP multisite, but I haven’t tested Flexible Widgets with BP or Custom Community, so there may be a conflict. Also, if any of Your themes or plugins include custom widgets, those widgets will not be replaced by Flexible Widgets.
Try disabling plugins one by one to see if it helps. (Don’t delete them, You can always enable them again.) If You find out this way which plugin is causing the trouble, I’d like to know.
Hope it helps.
Forum: Plugins
In reply to: Installed new plug in and blog crashedSorry to hear about that.
I haven’t tested the combination of Flexible Widgets and Community Cloud, but I would suggest you try deleting the Flexible Widgets plugin. Hopefully that will solve your problem. If it doesn’t, I think Community Cloud may have some issues.
Let me know if it helps.
Forum: Installing WordPress
In reply to: Unable to update to WordPress 2.8.2[sorry, wrong forum. Obviously, this isn’t WordPress MU]
Forum: Installing WordPress
In reply to: Unable to update to WordPress 2.8.2I’m trying to upgrade from 2.8.1 to 2.8.4. I never got the message that 2.8.2 was out, because 2.8.1 didn’t upgrade properly either. Had to go through Donncha’s fix to make it work.
However I’m still not getting any messages that a new upgrade is available and when I try to run wp-admin/update-core.php manually, I get the message that http://mu.ww.wp.xz.cn/nightly-builds/wordpress-mu-latest.zip wasn’t found.
Any suggstions are much appreciated.
Forum: Plugins
In reply to: One sidebar per categoryI found the solution. See cross posting here:
http://ww.wp.xz.cn/support/topic/282735?replies=4Forum: Fixing WordPress
In reply to: How do I register one sidebar for widgets per category?Got it! Hope this solution may be useful for others as well. But if you have any improvements, please post it. For instance, I could use an ID on each widget. Perhaps it is possible to use the category slug as the ID, but I am yet to find a solution for that.
Here goes the code:
<?php // Get sidebar names from db. global $wpdb; $my_widget_name = $wpdb->get_col("SELECT name FROM $wpdb->terms, $wpdb->term_taxonomy WHERE $wpdb->terms.term_id=term_taxonomy_id AND taxonomy='category' AND count!=0 ORDER BY name ASC"); // Register one sidebar per category name. foreach($my_widget_name as $my_widget) { register_sidebar(array( 'name' => 'Category: ' . $my_widget, 'before_widget' => '<div id="%1$s" class="%2$s widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', )); } ?>