Yes, the button displays on the menu as shown in the attached screenshot because we have added it on the menu.
It was not working because you had not activated the portfolio filter as shown in the attached screenshot which I have activated now.
Could you please check it now?
How have you created the mega menu?
Have you tried changing the navigation color from the theme styling settings as shown in the attached screenshots?
If you are making changes from the theme styling settings then you have to remove the custom CSS code that you have used to style navigation menu.
Please refer to the attached screenshot where you will see the left margin added to the row.
If you can’t find it then would you mind if I log in to your site and remove it? If this is ok then could you please temporarily create an admin user account and share me the account login details privately by adding them in the box having text “Enter your private content here (only you and forum moderators will be able to see it)”?
Solution for this topic
I need two things:
1) To change the whole page’s bg color to the same blue. As you can see yourself, I couldn’t make the bg grey color to blue. From where can I change it?
You can change background color to blue for only that page by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
body.page-id-1768 { background-color: #00bbff; }
2) I want to place the as a Home page while I’m working behind the scenes in the actual Home page. How I can temporalily shift those to pages.
You can configure in your website Reading Settings which page to display as the home page.
Please refer to the information provided on the below pages.
https://wordpress.org/support/article/settings-reading-screen/#reading-settings
https://www.tutorialspoint.com/wordpress/wordpress_reading_setting.htm
Would you mind if I log in to your site and do quick troubleshooting? If this is ok then could you please temporarily create an admin user account and share me the account login details privately by adding them in the box having text “Enter your private content here (only you and forum moderators will be able to see it)”?
Your shared website displays fine for me as shown in the attached screenshot so it seems you are only facing the issue when editing the page content.
Would you mind if I log in to your site and do quick troubleshooting? If this is ok then could you please temporarily create an admin user account and share me the account login details privately by adding them in the box having text “Enter your private content here (only you and forum moderators will be able to see it)”?
I logged into your website but didn’t have privileges to edit child theme file.
To resolve the issue, you have to add the below code in the functions.php file of the child theme.
function gillion_breadcrumbs( $args = array() ) { // Do not display on the homepage // Set default arguments $defaults = array( 'separator_icon' => '>', 'breadcrumbs_id' => 'breadcrumbs', 'breadcrumbs_classes' => 'breadcrumb-trail breadcrumbs', 'home_title' => esc_html__( 'Home', 'gillion' ), ); // Parse any arguments added $args = apply_filters( 'ct_ignite_breadcrumbs_args', wp_parse_args( $args, $defaults ) ); // Set variable for adding separator markup $separator = '<span class="separator"> ' . esc_attr( $args['separator_icon'] ) . ' </span>'; // Get global post object global $post; /***** Begin Markup *****/ // Open the breadcrumbs $html = '<div id="' . esc_attr( $args['breadcrumbs_id'] ) . '" class="' . esc_attr( $args['breadcrumbs_classes']) . '">'; // Add Homepage link & separator (always present) $html .= '<span class="item-home">' . esc_attr( $args['home_title'] ) . '</span>'; if ( !is_front_page() ) { $html .= $separator; } // Post if ( is_front_page() ) { //return; } elseif ( is_singular( 'post' ) ) { // Get post category info $category = get_the_category(); // Get category values $category_values = array_values( $category ); // Get last category post is in $last_category = end( $category_values ); // Get parent categories $cat_parents = rtrim( (string)get_category_parents( $last_category->term_id, true, ',' ), ',' ); // Convert into array $cat_parents = explode( ',', $cat_parents ); // Loop through parent categories and add to breadcrumb trail foreach ( $cat_parents as $parent ) { $html .= '<span class="item-cat">' . wp_kses( $parent, wp_kses_allowed_html( 'a' ) ) . '</span>'; $html .= $separator; } // add name of Post $html .= '<span class="item-current item-' . $post->ID . '"><span class="bread-current bread-' . $post->ID . '" title="' . get_the_title() . '">' . get_the_title() . '</span></span>'; } // Page elseif ( is_singular( 'page' ) ) { // if page has a parent page if ( $post->post_parent ) { // Get all parents $parents = get_post_ancestors( $post->ID ); // Sort parents into the right order $parents = array_reverse( $parents ); // Add each parent to markup foreach ( $parents as $parent ) { $html .= '<span class="item-parent item-parent-' . esc_attr( $parent ) . '">' . get_the_title( $parent ) . '</span>'; $html .= $separator; } } // Current page $html .= '<span class="item-current item-' . $post->ID . '"><span title="' . get_the_title() . '"> ' . get_the_title() . '</span></span>'; } // Attachment elseif ( is_singular( 'attachment' ) ) { // Get the parent post ID $parent_id = $post->post_parent; // Get the parent post title $parent_title = get_the_title( $parent_id ); // Get the parent post permalink $parent_permalink = get_permalink( $parent_id ); // Add markup $html .= '<span class="item-parent">' . esc_attr( $parent_title ) . '</span>'; $html .= $separator; // Add name of attachment $html .= '<span class="item-current item-' . $post->ID . '"><span title="' . get_the_title() . '"> ' . get_the_title() . '</span></span>'; } // Custom Post Types elseif ( is_singular() ) { // Get the post type $post_type = get_post_type(); // Get the post object $post_type_object = get_post_type_object( $post_type ); // Get the post type archive $post_type_archive = get_post_type_archive_link( $post_type ); // Add taxonomy link and separator $html .= '<span class="item-cat item-custom-post-type-' . esc_attr( $post_type ) . '">labels->name ) . '">' . esc_attr( $post_type_object->labels->name ) . '</span>'; $html .= $separator; // Add name of Post $html .= '<span class="item-current item-' . $post->ID . '"><span class="bread-current bread-' . $post->ID . '" title="' . $post->post_title . '">' . $post->post_title . '</span></span>'; } // Category elseif ( is_category() ) { // Get category object $parent = get_queried_object()->category_parent; // If there is a parent category... if ( $parent !== 0 ) { // Get the parent category object $parent_category = get_category( $parent ); // Get the link to the parent category $category_link = get_category_link($parent); // Output the markup for the parent category item $html .= '<span class="item-parent item-parent-' . esc_attr( $parent_category->slug ) . '">slug ) . '" href="' . esc_url( $category_link ) . '" title="' . esc_attr( $parent_category->name ) . '">' . esc_attr( $parent_category->name ) . '</span>'; $html .= $separator; } // Add category markup $html .= '<span class="item-current item-cat"><span class="bread-current bread-cat" title="' . $post->ID . '">' . single_cat_title( '', false ) . '</span></span>'; } // Tag elseif ( is_tag() ) { // Add tag markup $html .= '<span class="item-current item-tag"><span class="bread-current bread-tag">' . single_tag_title( '', false ) . '</span></span>'; } // Author elseif ( is_author() ) { // Add author markup $html .= '<span class="item-current item-author"><span class="bread-current bread-author">' . get_queried_object()->display_name . '</span></span>'; } // Day elseif ( is_day() ) { // Add day markup $html .= '<span class="item-current item-day"><span class="bread-current bread-day">' . get_the_date() . '</span></span>'; } // Month elseif ( is_month() ) { // Add month markup $html .= '<span class="item-current item-month"><span class="bread-current bread-month">' . get_the_date( 'F Y' ) . '</span></span>'; } // Year elseif ( is_year() ) { // Add year markup $html .= '<span class="item-current item-year"><span class="bread-current bread-year">' . get_the_date( 'Y' ) . '</span></span>'; } // Custom Taxonomy elseif ( is_archive() ) { // get the name of the taxonomy $custom_tax_name = get_queried_object()->display_name; // Add markup for taxonomy $html .= '<span class="item-current item-archive"><span class="bread-current bread-archive">' . esc_attr($custom_tax_name) . '</span></span>'; } // Search elseif ( is_search() ) { // Add search markup $html .= '<span class="item-current item-search"><span class="bread-current bread-search">'. esc_html__( 'Search results for', 'gillion' ) .': ' . get_search_query() . '</span></span>'; } // 404 elseif ( is_404() ) { // Add 404 markup $html .= '<span>' . esc_html__( 'Error 404', 'gillion' ) . '</span>'; } elseif( is_home() && isset( $_GET['read-it-later'] ) ) { // Add read later markup $html .= '<span>' . esc_html__( 'Read It Later', 'gillion' ) . '</span>'; } else { $html .= '<span class="item-current"><span class="bread-current">' . esc_attr( get_the_title( gillion_page_id() ) ) . '</span></span>'; } // Close breadcrumb container $html .= '</div>'; apply_filters( 'ct_ignite_breadcrumbs_filter', $html ); return ( $html ); }
Hi @dirkvang,
I hope you are well today and thank you for your question.
Could you please regenerate the POT file as described on the below pages and then translate it?
https://wordpress.stackexchange.com/questions/149212/how-to-create-pot-files-with-poedit
https://sellingplugins.com/create-translation-files-using-poedit-free/
Best regards,
Shufflehound team
Hi @shreysah_barot,
I hope you are well today and thank you for your question.
You don’t need to purchase and activate its license as the wpbakery page builder plugin comes bundled with the theme.
You can install it from the below path.
Admin Area -> Appearance -> Install Plugins
If you are already using the wpbakery page builder plugin then please delete it and install it from the above path.
If you still face any issue with the page then could you please share the page URL from your site where you are facing the issue so that I can troubleshoot it?
Best regards,
Shufflehound team
Where are you using it on your website?
Could you please share with me the exact page URL where you are using it so that I can troubleshoot it?
You can remove the header mobile search by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.header-mobile-search { display: none !important; }
You have to edit the image and remove white space from it.
Could you please try changing portfolio options as shown in the attached screenshots?
You can contact the Loco translate plugin support on the below page to know why the plugin is not translating it.
https://wordpress.org/support/plugin/loco-translate/
https://wordpress.org/support/topic/translations-not-showing-4/
It gets hidden when you enable the “Hide Dropdown Social Icons” option as shown in the attached screenshot.
I have disabled that option on your website now.
Could you please confirm it?
It displays fine when you set Portfolio option to -1 as shown in the attached screenshot.
You are most welcome here 🙂
You are most welcome here 🙂
I logged into your website and created a test page containing Portfolio element but the categories are getting saved for me as shown in the attached screenshot.
Please advise.