bento
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Magic Fields] All line breaks stripped from multi-line fieldsHi Gnuget, thanks for your reply.
The site is running on an Apache server. WordPress version 2.9.1. Since I am building a multilingual site I use also the Qtranslate plugin, not sure if this is important.
The line break issues appears with multi-line fields (with TinyMCE editor), which have a lot of other bugs too i.e. switching between visual view and HTML view will erase all formatting, generally formatting is VERY buggy, almost not to handle i.e. creating a headline or similar. When selecting text the cursor seems to shift sometimes too.
Generally full new paragraphs and line breaks are not preserved (or only once, but after the next saving of a multi-line field all formatting is gone).Also I can not even deactivate the visual editor from the Magic Fields settings, since then my whole page stays gray and nothing is loaded (WordPress admin area for pages/posts).
I use Safari 4 and Firefox 3.6 equally for development (under Mac), it did not make a difference to the line-break problem.
Forum: Plugins
In reply to: [Plugin: Magic Fields] All line breaks stripped from multi-line fieldsI have created a Magic Fields version with an integrated Markdown editor (https://markitup.jaysalvat.com/examples/markdown/) as an additional option when setting up custom write panels.
This replacement text editor repairs the currently bug-ridden integration of the TinyMCE editor in Magic Fields i.e. all paragraphs and line breaks are preserved with this editor.
The Markdown editor also offers an easy syntax for writing HTML, i.e. a “#” before the Title will create a <h1>Headline</h1>, but also the menu icons can be used to add the markup. For H2 headlines use “##” etc, it`s a very easy to learn syntax, try out the syntax on this sample page: https://markitup.jaysalvat.com/examples/markdown/
Additionally you can paste text from MS Word or any other text editor without having to worry that pasted style attributes will mess up your text in WordPress (which is a BIG problem with the WordPress default TinyMCE editor).
Also you can paste/write HTML directly into the Markdown editor. HTML will be recognised as such and not altered.
More information here:
https://bentographics.com/shop/Forum: Plugins
In reply to: [Plugin: FD Feedburner Plugin] 2.8Same here, FeedSmith and the FD Feedburner Plugin do not work under WP 2.8.
@kkrueger01: I did not encouter any error lik you. It simply just does not work.
Forum: Fixing WordPress
In reply to: wordtube file upload aborts without error messageThanks for this excellent plugin, I appreciate that it`s highly configurable.
However I ran into the same problem. I can not upload MP3 files through the Wordtube backend. It aborts without any warning or error and simply goes back to the initial page (Media > Wordtube). I am using version 2.2.
It would be a great help if this could be fixed, I can not use this plugin for a commercial website. Some of my customers are not familiar with uploading via FTP and inserting file paths.
Thank you!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Back to Album Link – From Single Blog PostOk, I had to hire a programmer to fix this problem for me. Anybody who is interested in the script “Back to Album link”, can purchase it from me for 25USD. I had to pay 50$ for it and would like to share the cost.
It works great, however it only gives you the back to album link (not i.e. Back to “Album Name”). Here is a sample: https://tinyurl.com/back-to-album-link
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Back to Album Link – From Single Blog PostHello? Mr Alex Rabe? Anybody here who can help?
I still have the same problem!
Also a lot of other people have the same problem with NextGen gallery: It does not provide a specific back-to-album link, when viewing enlarged images (in Image-Browser mode)!
Everything else is perfect with the NextGen plugin, but the back-to-album link is a small but very important feature.
Thanks for any hints/help/links!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Gallery title and Back-link hackWhen I open nextgen-gallery/functions.php, I can`t find the line where it says:
if (is_array($picturelist)) { $out = '<div class="ngg-galleryoverview" id="ngg-gallery-'. $galleryID .'">';
Did the code for the nextGen gallery change in the meantime?
I really want to implement this hack, please let me know if it still works with the current version of NG.Thanks.
Forum: Plugins
In reply to: [Plugin: WordPress.com Stats] Two entries for the same blogI had the same problem. Somehow WordPress stats differentiate if the “WordPress address (URL)” (see your blog settings) of your old blog was with/without “www”. I deleted the “www” part of my new blog, updated the permalinks and also re-activated the plugin again. Then the option poppend up, if I want to merge the stats history of my old blog and the new one. Hope this makes sense.
Forum: Plugins
In reply to: My Page Order Plugin Doesn’t Work!Use this plugin instead, it does the same job and works as advertised:
https://wpguy.com/plugins/category-order/Forum: Plugins
In reply to: My Page Order Plugin Doesn’t Work!This plugin does not work. Did everything as described, updated permissions etc. I also checked my WP Theme is uses a generic wp_list_categories(); to call the categories. Nothing changing from the default order. Please fix it. Thanks!
Forum: Themes and Templates
In reply to: want multiple specific page content through templateThanks Moshu! Great tip. It works!
Forum: Themes and Templates
In reply to: want multiple specific page content through templateI woud like to do the same, any answers yet?
Thanks!
Forum: Plugins
In reply to: Questions on Ajax Page LoaderIt
s a great idea, it
s my dream to AJAX-ize WordPress.
Though, this plugin had no effect on my site. It even stopped the site from loading other pages, meaning, even if I click on a different page-link it would not load that page. It always skips back to the homepage or whichever pages is set to “home”.
I looking forward to an update from you!Best luck!
Forum: Developing with WordPress
In reply to: WordPress and JQuery – how get a post via ajaxHi adamrbrown & Julietjaxx,
I have the same question as Julietjaxx, how can I retrive a WordPress post using Jquery (without page reload)? I checked the links on the www.ads-software.com page but nothing really gives an easy to implement example using Jquery.
I would be very grateful, if someone could explain this to me or refer me to a good tutorial, specifically for implementation in WordPress.Thank you!
Forum: Fixing WordPress
In reply to: do child categories inherit template of parent category?Hi Yoshi,
Thanks for writing the plug-in! This is exactly what I need.
Unfortunately it doesn’t work when I install it.
This is what I copied into my plug-ins folder:<?php
/*
Plugin Name: Template Inheritor
Plugin URI: https://www.ads-software.com/support/profile/53387
Description: Chield pages use category template
Author: Yoshi
*/
add_action(‘template_redirect’, ‘inherit_cat_template’);function inherit_cat_template() {
if (is_category()) {
$catid = get_query_var(‘cat’);
if ( file_exists(TEMPLATEPATH . ‘/category-‘ . $catid . ‘.php’) ) {
include( TEMPLATEPATH . ‘/category-‘ . $catid . ‘.php’);
exit;
}$cat = &get_category($catid);
$parent = $cat->category_parent;
while ($parent){
$cat = &get_category($parent);
if ( file_exists(TEMPLATEPATH . ‘/category-‘ . $cat->cat_ID . ‘.php’) ) {
include (TEMPLATEPATH . ‘/category-‘ . $cat->cat_ID . ‘.php’);
exit;
}
$parent = $cat->category_parent;
}
}
}
?>If I don’t place a description text at the
beginning of your script and envelope it with php tags like these:
“<?php” and “?>” it won’t even show up at the plug-ins screen.Anyway, now it does show up and can be activated,
but the child-category (or sub-category) still uses the
default template, instead of the custom template of
the parent category.I am using the “Post Templates by Category” by
https://guff.szub.net/ as well. Any conflict there?Any advice is greatly appreciated!