Is it possible to change the color of the text my menu on just the home page (ID 8)? I wish to change the name of my menu, which is called Main Menu.
Also, the theme I use has a sticky navigation bar — is it possible to change the color of the header only on the sticky navigation bar on the specific home page? I’m sure there is some CSS involved in that, but I’m just not the person who knows how to do it.
https://meadows.thoughtfulcon.com/
Thanks in advance,
Caleb
unfortunately my current project isn’t online yet, so hopefully I am able to explain my issue.
Imagine a slider on a webpage. I would like to add custom buttons somewhere else on that page that are having the exact same effect as the next/prev buttons on the slideshow. Then the visitor can read through the text with highlighted links and if he clicks on one of these links the slider is sliding to the appropriate slide. (<- sliding is important here. I do not want to just reload the page with the slider showing the requested slide!)
I only have the free version of your plugin, but would like to work on my coding skills as well and to me this is just a perfect possibility to improve.
Hopefully you got me and are able to point me to the right direction.
Highly appreciated, best regards
-Bj?rn
]]>I am building a private extranet for my client (unavailable to general public). It is being prepared from an off-the-shelf template with managed hosting.
I will be the only backend WP administrator and the only one creating content. Users will simply access the published pages only and have nothing to do with WordPress.
The extranet will be password-protected and will feature webpages from different content (pages, portfolio types, media etc) based on login type. e.g.
password type 1 can access pages A, B and C
password type 2 can only access pages B
password type 3 can only access pages E and F.
Although all user types can see the same homepage and are none-the-wiser of any other content available on the site they may not have access to. Their navigation will essentially be custom to their access type.
Can I use your plugin to achieve this? or could you guide me on what combination of WordPress feature and/or plugin can I use to achieve this?
So far my search for plugins has led my to plugins for managing WordPress account privileges for publishing, which doesn’t suit my needs. My users don’t even know this is a WordPress site, all they do is access the published pages. They won’t be logging in to the CMS to publish content.
Thank you,
John
]]>I am building a private extranet for my client (unavailable to general public). It is being prepared from an off-the-shelf template with managed hosting.
I will be the only backend WP administrator and the only one creating content. Users will simply access the published pages only and have nothing to do with WordPress.
The extranet will be password-protected and will feature webpages from different content (pages, portfolio types, media etc) based on login type. e.g.
password type 1 can access pages A, B and C
password type 2 can only access pages B
password type 3 can only access pages E and F.
Although all user types can see the same homepage and are none-the-wiser of any other content available on the site they may not have access to. Their navigation will essentially be custom to their access type.
Can I use your plugin to achieve this? or could you guide me on what combination of WordPress feature and/or plugin can I use to achieve this?
So far my search for plugins has led my to plugins for managing WordPress account privileges for publishing, which doesn’t suit my needs. My users don’t even know this is a WordPress site, all they do is access the published pages. They won’t be logging in to the CMS to publish content.
Thank you,
John
*Ultimate Private Member Portal
https://www.wpexpertdeveloper.com/ultimate-private-member-portal/
I am building a private extranet for my client (unavailable to general public). It is being prepared from an off-the-shelf template with managed hosting.
I will be the only backend WP administrator and the only one creating content. Users will simply access the published pages only and have nothing to do with WordPress.
The extranet will be password-protected and will feature webpages from different content (pages, portfolio types, media etc) based on login type. e.g.
password type 1 can access pages A, B and C
password type 2 can only access pages B
password type 3 can only access pages E and F.
Although all user types can see the same homepage and are none-the-wiser of any other content available on the site they may not have access to. Their navigation will essentially be custom to their access type.
Can I use your plugin to achieve this? What combination of WordPress feature and/or plugin can I use to achieve this?
So far my search for plugins has led my to plugins for managing WordPress account privileges for publishing, which doesn’t suit my needs. My users don’t even know this is a WordPress site, all they do is access the published pages. They won’t be logging in to the CMS to publish content.
Thank you,
John
*Ultimate Private Member Portal
https://www.wpexpertdeveloper.com/ultimate-private-member-portal/
I have created custom navigation using wp_nav_menu, But menu links i.e. parent link which has sub-menu link are not clickable, they are not redirecting to respective page.
Site URL: https://dev.risesolutionz.com/rise/services/
Menu front of ‘Services’ title have this bug, parent hyperlinks are not working.
Please help.
Thanks in advance
Swapnil Sutar
The website I am trying to mimic is: https://fourdrubber.com/
and the code for my breadcrumbs are as follows.
if ( ! function_exists( 'presscore_get_breadcrumbs' ) ) :
/**
* Returns breadcrumbs html
* original script you can find on https://dimox.net
*
* @since 1.0.0
*
* @return string Breadcrumbs html
*/
function presscore_get_breadcrumbs( $args = array() ) {
$default_args = array(
'text' => array(
'home' => _x('Home', 'breadcrumbs', 'the7mk2'),
'category' => _x('Category "%s"', 'breadcrumbs', 'the7mk2'),
'search' => _x('Results for "%s"', 'breadcrumbs', 'the7mk2'),
'tag' => _x('Entries tagged with "%s"', 'breadcrumbs', 'the7mk2'),
'author' => _x('Article author %s', 'breadcrumbs', 'the7mk2'),
'404' => _x('Error 404', 'breadcrumbs', 'the7mk2')
),
'showCurrent' => 1,
'showOnHome' => 1,
'delimiter' => '',
'before' => '<li class="current">',
'after' => '</li>',
'linkBefore' => '<li typeof="v:Breadcrumb">',
'linkAfter' => '</li>',
'linkAttr' => ' rel="v:url" property="v:title"',
'beforeBreadcrumbs' => '',
'afterBreadcrumbs' => '',
'listAttr' => ' class="breadcrumbs text-normal"'
);
$args = wp_parse_args( $args, $default_args );
$breadcrumbs_html = apply_filters( 'presscore_get_breadcrumbs-html', '', $args );
if ( $breadcrumbs_html ) {
return $breadcrumbs_html;
}
extract( array_intersect_key( $args, $default_args ) );
$link = $linkBefore . '<a' . $linkAttr . ' href="%1$s" title="">%2$s</a>' . $linkAfter;
$breadcrumbs_html .= '<div class="assistive-text">' . _x('You are here:', 'breeadcrumbs', 'the7mk2') . '</div>';
$homeLink = home_url() . '/';
global $post;
if (is_home() || is_front_page()) {
if ($showOnHome == 1) {
$breadcrumbs_html .= '<ol' . $listAttr . '><a href="' . $homeLink . '">' . $text['home'] . '</a></ol>';
}
} else {
$breadcrumbs_html .= '<ol' . $listAttr . ' xmlns:v="https://rdf.data-vocabulary.org/#">' . sprintf($link, $homeLink, $text['home']) . $delimiter;
if ( is_category() ) {
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) {
$cats = get_category_parents($thisCat->parent, TRUE, $delimiter);
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
if(preg_match( '/title="/', $cats ) ===0) {
$cats = preg_replace('/title=""/', 'title=""', $cats);
}
$breadcrumbs_html .= $cats;
}
$breadcrumbs_html .= $before . sprintf($text['category'], single_cat_title('', false)) . $after;
}
elseif ( is_search() ) {
$breadcrumbs_html .= $before . sprintf($text['search'], get_search_query()) . $after;
} elseif ( is_day() ) {
$breadcrumbs_html .= sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
$breadcrumbs_html .= sprintf($link, get_month_link(get_the_time('Y'),get_the_time('m')), get_the_time('F')) . $delimiter;
$breadcrumbs_html .= $before . get_the_time('d') . $after;
} elseif ( is_month() ) {
$breadcrumbs_html .= sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
$breadcrumbs_html .= $before . get_the_time('F') . $after;
} elseif ( is_year() ) {
$breadcrumbs_html .= $before . get_the_time('Y') . $after;
} elseif ( is_single() && !is_attachment() ) {
$post_type = get_post_type();
if ( $post_type != 'post' ) {
$post_type_obj = get_post_type_object( $post_type );
$slug = $post_type_obj->rewrite;
$breadcrumbs_html .= sprintf($link, get_post_type_archive_link( $post_type ), $post_type_obj->labels->singular_name);
if ($showCurrent == 1) {
$breadcrumbs_html .= $delimiter . $before . get_the_title() . $after;
}
} else {
$cat = get_the_category(); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, $delimiter);
if ($showCurrent == 0) {
$cats = preg_replace("#^(.+)$delimiter$#", "$1", $cats);
}
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
$breadcrumbs_html .= $cats;
if ($showCurrent == 1) {
$breadcrumbs_html .= $before . get_the_title() . $after;
}
}
} elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
$post_type_obj = get_post_type_object(get_post_type());
if ( $post_type_obj ) {
$breadcrumbs_html .= $before . $post_type_obj->labels->singular_name . $after;
}
} elseif ( is_attachment() ) {
if ($showCurrent == 1) {
$breadcrumbs_html .= $delimiter . $before . get_the_title() . $after;
}
} elseif ( is_page() && !$post->post_parent ) {
if ($showCurrent == 1) {
$breadcrumbs_html .= $before . get_the_title() . $after;
}
} elseif ( is_page() && $post->post_parent ) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = sprintf($link, get_permalink($page->ID), get_the_title($page->ID));
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
for ($i = 0; $i < count($breadcrumbs); $i++) {
$breadcrumbs_html .= $breadcrumbs[$i];
if ($i != count($breadcrumbs)-1) {
$breadcrumbs_html .= $delimiter;
}
}
if ($showCurrent == 1) {
$breadcrumbs_html .= $delimiter . $before . get_the_title() . $after;
}
} elseif ( is_tag() ) {
$breadcrumbs_html .= $before . sprintf($text['tag'], single_tag_title('', false)) . $after;
} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
$breadcrumbs_html .= $before . sprintf($text['author'], $userdata->display_name) . $after;
} elseif ( is_404() ) {
$breadcrumbs_html .= $before . $text['404'] . $after;
}
if ( get_query_var('paged') ) {
$breadcrumbs_html .= $before;
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) {
$breadcrumbs_html .= ' (';
}
$breadcrumbs_html .= _x('Page', 'bredcrumbs', 'the7mk2') . ' ' . get_query_var('paged');
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) {
$breadcrumbs_html .= ')';
}
$breadcrumbs_html .= $after;
}
$breadcrumbs_html .= '</ol>';
}
return apply_filters( 'presscore_get_breadcrumbs', $beforeBreadcrumbs . $breadcrumbs_html . $afterBreadcrumbs, $args );
} // end presscore_get_breadcrumbs()
endif;
my site is not live and only just in the interim of being built – no content etc,
but the breadcrumb trail is displaying archives and categories which I just plainly don’t want to display.
Kind regards
]]>1. The theme has main color schemes and I was trying to change the color of the border. I was able to change the style of the border and even make it a radius…but the color won’t budge.
2. Is there a way to get a custom background/image behind the navigation menu? I was able to do this to another theme, not sure where to change it on this one. And what the code is.
3. I’m also trying to remove the meta data and only keep the date.
When I installed the theme the main theme colors were red. There are options to make it blue or green as well, hence why it is blue right now. I was able to change the font family, but still..not the colors. I noticed their is a premium version and add ons, but honestly hoping to avoid buying anything if it can be fixed with some CSS. Thank you!
Shawna
https://caffeinatedandcreative.com
]]>THANK YOU SO MUCH IN ADVANCE!
]]>