Forum Replies Created
-
Author
-
btn23kleoParticipant
I’m pretty sure I put this request under “BuddyApp”. You may have provided me a solution for KLEO theme. The questions is pertaining to BuddyApp.
Please provide a short code so I can put the new user registration form into a page…
btn23kleoParticipantPlease kindly respond to this issue so we can can this fixed up for our website. Many thanks…
btn23kleoParticipantCan you please expand on that? Are you able to modify the code to support your suggestions… Thank you
btn23kleoParticipantPlease let me know if I would be able to use the same codes to add custom menu items next to the social links in the top bar in KLEO theme. Please help!
Register a new menu with this function added to sweetdate-child/functions.php
function kleo_register_my_menus() {
register_nav_menus(
array(
‘Top’ => __( ‘In the top bar’, ‘kleo_framework’ ),
)
);
}
add_action( ‘init’, ‘kleo_register_my_menus’ );And then in header.php add this code somewhere inside top-links div.
<?php wp_nav_menu( array( ‘container’ => false, ‘menu_class’ => ‘left top_menu’, ‘theme_location’ => ‘Top’, ‘fallback_cb’ => ”, ‘walker’ => new sweetdate_walker_nav_menu)); ?>and this style to Sweetdate – Styling options – Quick css
.top_menu {list-style: none;}
.top_menu li {float:left;margin-right: 10px}
.top_menu li:last-child {margin-right: 0;}btn23kleoParticipantpage loader, offers the ability to pre-render the page with all of the elements of the page displayed at once. this feature is common amongst some of the top selling themes, one of which that i have purchased is called “hogash”…
-
AuthorPosts