tactics
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Menu not pushing content down (redux)Perfect. Thanks very much.
Yep. That fixed the underlined link warnings. Only warnings remaining are the two previous ones regarding links in new tabs and subheadings. Great job.
Thanks very much William. Always happy to help.
Thanks, but it still flags:
Link Opens New Window or Tab<a class="twitter" aria-label="Visit us on X in a new tab" target="_blank"><i class="fa fa-twitter"></i></a>
Ignore<a class="linkedin" aria-label="Visit us on LinkedIn in a new tab" target="_blank"><i class="fa fa-linkedin"></i></a>
Additionally, it’s flagging my page for not having any sub-headings, which is completely wrong. See page here:
https://axxs.io/Forum: Plugins
In reply to: [Contact Form 7] A couple of accessibility issues with the formsExbico Pro. Not actually “built-in”, recommended or required.
Forum: Plugins
In reply to: [Max Mega Menu] Can’t get it to work with Exbico themeOK, I got it to work finally! Only issue is the mobile menu isn’t displaying now. I’ll start a new thread for that. Thanks for all your assistance!
Forum: Plugins
In reply to: [Max Mega Menu] Can’t get it to work with Exbico themeForgive me if I’m missing something, but I don’t see a “display options tab” anywhere.
Forum: Plugins
In reply to: [Max Mega Menu] Can’t get it to work with Exbico themeHi Tom,
Following your instructions, here’s what I did:
- I went to Mega Menu > Menu Locations > Add New Location and added a location called “Primary Menu”.
- Then I went into header.php and replaced all the code within <!–menu–> block with the following:
<?php add_action( 'after_setup_theme', 'register_my_menu' ); if ( ! function_exists( 'mytheme_register_nav_menu' ) ) { function mytheme_register_nav_menu(){ register_nav_menus( array( 'primary_menu' => __( 'Primary Menu', 'text_domain' ), 'footer_menu' => __( 'Footer Menu', 'text_domain' ), ) ); } add_action( 'after_setup_theme', 'mytheme_register_nav_menu', 0 ); } ?>
When I go back to the mega menus setup it still says “There are currently no menu locations registered by your theme.” and I have no nav menu at all in my header anymore.
What am I missing here?
- This reply was modified 10 months ago by tactics.
Forum: Plugins
In reply to: [Custom Post Type UI] Display post type's plural label?You’re right, my colleague changed the slug. Thanks much!
Forum: Plugins
In reply to: [Custom Post Type UI] Display post type's plural label?Tried:
<h1><?php $obj = get_post_type_object( 'wedding-logos' ); echo $obj->labels->name; ?></h1>
Didn’t work.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Plugin inserting " "s before excerptsOK, thanks very much.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Plugin inserting " "s before excerptsYes, but it still has the white space.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Plugin inserting " "s before excerptsIt is. And as you can see, now nothing shows up on the page.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Plugin inserting " "s before excerptsWhen I do that, the widget doesn’t show up at all.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Plugin inserting " "s before excerptsI’m adding it using the widget. In my template:
<aside class="related-posts"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Aside Widget") ) : ?> <?php endif; ?> </aside>
in my functions.php:
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Aside Widget', 'before_title' => '<h3>', 'after_title' => '</h3>', ) );