miniCarl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_list_categories() php warning<ul class="category-list"> <?php wp_list_categories('title_li='); ?> </ul>
Worked before :/
Forum: Fixing WordPress
In reply to: Wierd anchor (#) appears in urlIm sorry, I dont understand what I’m supposed to do or whats causing this
Forum: Hacks
In reply to: Buggy select dropdown in widgetIssue resolved, thank you Mark.
Forum: Hacks
In reply to: Buggy select dropdown in widgetStill looking for a solution on this one
Forum: Hacks
In reply to: tutorial: how to design a plugin easily and clearlyLink aint working
Forum: Fixing WordPress
In reply to: Content and Title filters, shortcodesnothing?
Forum: Fixing WordPress
In reply to: Content and Title filters, shortcodesOk, I found a slightly better way to do things…
Instead of using the the_content filter on the title, i now use
$title = apply_filters('the_title', $title);
…And this works with the shortcode when I add this to my functions.php file:
add_filter('the_title', 'do_shortcode');
…Still looking for improvements
Forum: Fixing WordPress
In reply to: Moving sidebar in Modularity lite themeYou probably have to assign “float:right;” to some other element, maybe article or #main?
Post your index.php and style.css so we can take a closer look ??Forum: Fixing WordPress
In reply to: wp_insert_post() inserts 2 postsThis doesn’t make a difference as im testing the code without conditions…
$check = get_option('fristil_theme_activation_check'); if(TRUE || $check != "set" ){
…or i totally missunderstood you
Forum: Fixing WordPress
In reply to: Links redirecting to Homepageyour single.php might be missing
Forum: Fixing WordPress
In reply to: Morning After – how do I bold or underline hyperlinksadd this to your style.css file
a[href]{ text-decoration: underline; font-weight: bold; color: red; }
Forum: Fixing WordPress
In reply to: wp_insert_post() inserts 2 postsBump
Forum: Fixing WordPress
In reply to: Cannot call get_footer ()I have the same problem.
Here’s my index.php
https://wordpress.pastebin.com/sdJNjEanForum: Requests and Feedback
In reply to: Why are images linked by default?Here’s your solution nickaster!
1) You don’t need that code in functions.php
2) Yes, make sure image_default_link_type is blank in /options.phpBUT, here is what you’ve all missed
Link settings are also saved individually for each image.
You need to delete your images not only from your posts/pages but also from your media library, and upload them again. There you go, no default links anymore.Cheers!
Forum: Fixing WordPress
In reply to: How do I add custom stylesheets to TinyMCE?Still no luck? I got the same problem as rhankins…