befranga
Forum Replies Created
-
Hi I had the same problem and found out it helped to deactivate “backwpup”. Not sure if you use this plugin but that helped for me.
Forum: Plugins
In reply to: [Secure Custom Fields] ACF Relationship not workingHi, I have the same problem that I created some Field Groups but they are not showing on the editor page. I just updated my WP to 4.4. Was just wondering if you had this too after the update?
Forum: Plugins
In reply to: [Page scroll to id] Menu links class only for "clicked" links?Thanks!
Forum: Plugins
In reply to: [Page scroll to id] Menu links class only for "clicked" links?Yes I’ve tried that. Can I send you the website link somewhere private?
Forum: Plugins
In reply to: [Page scroll to id] Menu links class only for "clicked" links?Thanks for your answer. Sorry the page is not online yet. The Links look like this: “Link“
As said before the “clicked” is added to the links and “_mPS2id-h” is also inside the link but no “highlight” class.
And yes the links are the same.
When I make links inside my page everything works just fine:
““Only when I want to use it in the wordpress menu it’s missing the highlight class.
Thanks again!
Forum: Plugins
In reply to: [WP Favorite Posts] Delete old posts as favouritesI figured out that it doesn’t work with “sticky” posts. Well at least on my page. So when I deleted the “sticky” from my posts they never showed up again on my favourite list page. Maybe this helps someone and maybe this could be a bug.
Forum: Plugins
In reply to: [WP Favorite Posts] Delete old posts as favouritesI still got this strange porblem. Is there nothing I can do?
Forum: Fixing WordPress
In reply to: Page with custom queryThat was exactly the problem. Thanks for your answer!
Forum: Fixing WordPress
In reply to: Sidebar widget not showing upDo you have this in sidebar.php?
<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?> <div id="tertiary" class="sidebar-container" role="complementary"> <div class="sidebar-inner"> <div class="widget-area"> <?php dynamic_sidebar( 'sidebar-2' ); ?> </div><!-- .widget-area --> </div><!-- .sidebar-inner --> </div><!-- #tertiary --> <?php endif; ?>
And this should be in your functions.php
register_sidebar( array( 'name' => __( 'Secondary Widget Area', 'twentythirteen' ), 'id' => 'sidebar-2', 'description' => __( 'Appears on right sidebar.', 'twentythirteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );
Forum: Plugins
In reply to: [Unique Headers] How to call in templateThanks I will try. Can you give me a hint how do I call it in my CPT?
Forum: Plugins
In reply to: [Unique Headers] How to call in templateThank you very much, I can see it now! Is there any chance to display it in Custom Post Types?
Forum: Plugins
In reply to: [WP Favorite Posts] Translate "Your favorites will be here" text from widgetI got the same problem. Did you found a solution?
Forum: Themes and Templates
In reply to: display tags as images in content.phpI think that is exactly what I need. Thanks! Just doesn’t display correctly (now I have the same icon twice for some reason?)
Is this correct?
<?php if (has_tag('Baby')) : ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-baby-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_baby.png'" class="iconb"> <?php endif;?> <?php if (has_tag('Kleinkind')) : ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-kleinkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kleinkind.png'" class="iconb"> <?php endif;?> <?php if (has_tag('Kindergartenkind')) : ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-kindergartenkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kindergartenkind.png'" class="iconb"> <?php endif;?> <?php if ( has_tag( 'Baby' ) && ( has_tag( 'Kleinkind' ) )): ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-baby-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_baby.png'" class="iconb"> <img src="<?php bloginfo('template_url'); ?>/images/mms-kleinkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kleinkind.png'" class="iconb"> <?php endif;?> <?php if ( has_tag( 'Kleinkind' ) && (has_tag( 'Kindergartenkind' ) )): ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-kleinkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kleinkind.png'" class="iconb"> <img src="<?php bloginfo('template_url'); ?>/images/mms-kindergartenkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kindergartenkind.png'" class="iconb"> <?php endif;?> <?php if ( has_tag( 'Baby' ) && (has_tag( 'Kindergartenkind' ) )): ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-baby-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_baby.png'" class="iconb"> <img src="<?php bloginfo('template_url'); ?>/images/mms-kindergartenkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kindergartenkind.png'" class="iconb"> <?php endif;?> <?php if ( has_tag( 'Baby' ) && (has_tag( 'Kindergartenkind' ) && (has_tag( 'Kleinkind' ) ))) : ?> <img src="<?php bloginfo('template_url'); ?>/images/mms-baby-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_baby.png'" class="iconb"> <img src="<?php bloginfo('template_url'); ?>/images/mms-kleinkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kleinkind.png'" class="iconb"> <img src="<?php bloginfo('template_url'); ?>/images/mms-kindergartenkind-icon.svg" onerror="this.onerror=null; this.src='<?php bloginfo('template_url'); ?>/images/icon_kindergartenkind.png'" class="iconb"> <?php endif;?>
Forum: Themes and Templates
In reply to: display tags as images in content.phpthanks for your replay. You are right. Now I tried with an array
<?php elseif (has_tag( array( 'Baby', 'Kindergartenkind' ) ) ) : ?>
And it checks only if one of these tags are in the array. So it displays again only one tag.
Then I found this Code Snippet:
<?php the_tags('<img src="'.get_bloginfo("template_url").'/images/icons/','.png" />'); ?>
But this simply displays all tags as images.
Well I guess it’s not possible..
Forum: Themes and Templates
In reply to: display tags as images in content.phpNobody can help?