Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • That’s Nice to learn something new every day. I had no idea of the Slack Channel Support. Thanks for that
    @sanyi88 don′t go. I’ve really appreciated your prevours fix.
    Nice day to everyone!

    Thanks for your Post @sanyi88
    it was very helpful.
    Now what I see is that even I deactivated the plugin Metadata is still Injecting.
    This is quite annoying!
    It will be helpful to have more help from developer

    Hello, I’ve recently installed the plugin and found it so cool!
    I think it will be great that includes a date picker box to booking form. That way a customer can decide when he is thinking to take that tour.
    I′ll looking forward to next update!

    Nice day

    Forum: Reviews
    In reply to: [Carousel Slider] .

    Oh yeah. Sorry. It was a misconfiguration of my child theme causing that. plugin now works just perfect!

    Hello,
    Have you find a way to solve this issue?

    Im experiencing same problem using moesia theme, the meta description snippet shows correct info from %%excerpt%% in posts, but the problem is in pages, which seems to be broken.

    I just made some modifications on my child functions, for display the excerpt box above the Yoast plugin using this:

    function mytheme_addbox() {
    add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'page', 'normal', 'high');
    }
    add_action( 'admin_menu', 'mytheme_addbox' );

    I Hope you can guide me trough a solution

    Thanks for your amazing plugin, every update makes the plging just better and better

    Thread Starter diana_levy

    (@diana_levy)

    Thanks for your answer! I’ll check out the icons problem!
    I was working for many hours fixing my problems.
    I post my own answers in here in order to explain why Ive experienced that issues:

    Appearence > customize (Broken)
    When creating a Child theme I had:
    -customizr-child > Inc > class-fire-init.php
    – customizr-child > Inc > class-fire-utils.php
    deleting this files in child theme I get the Appearence > customize To work fine

    Regarding to the images dissapeared: I had

    customizr-child > Inc > Parts > class-header-header_main.php
    customizr-child > Inc > Parts > class-header-footer_main.php

    I’d duplicated this files in order to put some extra code in head and footer, what I did was deleted the files and add the code via functions.php in wp_head and wp_footer on my child theme

    Now I have the theme working perfect again! Hope it works for someone else

    Hello @mr108

    You can alter the theme-setup.php file
    Look where it says:

    // FOOTER MENU
    function nirvana_footer_menu() {
    	if ( has_nav_menu( 'footer' ) )
    		wp_nav_menu( array( 'container' => 'nav', 'container_class' => 'footermenu', 'theme_location' => 'footer', 'depth' =>1 ) );
    }
    add_action ('cryout_footer_hook','nirvana_footer_menu' , 10);

    And replace the footer depth=>1 for ‘footer’, ‘depth’ =>2

    Now your sub-menus has to show

    I had to alter the nirvana theme even when im using a child theme, becouse the Includes folder in nirvana child are not overwrtting the main theme

    Hope it works, for me is working just fine

    Thread Starter diana_levy

    (@diana_levy)

    I answer myself in order to help anyone else trying to achieve that kind of results.

    First I’ve created a child theme…change the page which was showing the category for a page template I’ve created
    In my case my page template was page-blog.php with this structure:

    <?php /*
     * Template Name: Blog dos columnas
     *
    
     */
    get_header(); ?>
    
    		<section id="container" class="two-columns-right">
    
    			<div id="content" role="main">
    
    				<?php get_template_part( 'content/content', 'blog'); ?>
    
    			</div><!-- #content -->
    			<?php get_sidebar('right'); ?>
    		</section><!-- #container -->
    
    <?php get_footer(); ?>

    Then another file under the folder: content.
    This file has the query of my category, in my case i named it content-blog.php

    <?php
    /**
     *
     * Learn more: https://codex.www.ads-software.com/Post_Formats
     *
     * @package Cryout Creations
     * @subpackage Nirvana
     */
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
     $args = array(
        'category_name' =>'tech-blog',
    	'order' => DESC,
    	'post_per_page' => 6,
    	'paged' => $paged
    );
    query_posts($args);
    
    if ( have_posts()  ) while ( have_posts() ) : the_post(); ?>
    
    				<div id="post-<?php the_ID(); ?>" class="page-blog">
                    	<div class="imagen-blog"><?php the_post_thumbnail('blog'); ?></div>
    					<?php if ( is_front_page() ) { ?>
    						<h2 class="entry-title"><?php the_title(); ?></h2>
    					<?php } else { ?>
    						<h1 class="entry-title"><?php the_title(); ?></h1>
    					<?php } ?>
    
    					<div class="entry-content">
    
                        <div class="meta">
                        <p><?php the_date(); ?>&nbsp;-&nbsp;  <?php the_author(); ?></p>
                        </div>
                        <div class="clear"></div>
    
    					<div class="separator-blog">	
    
    					<?php the_excerpt(); ?></div>
    						<div style="clear:both;"></div>
    						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'nirvana' ), 'after' => '</div>' ) ); ?>
    						<?php edit_post_link( __( 'Edit', 'nirvana' ), '<span class="edit-link"><i class="icon-edit"></i> ', '</span>' ); ?>
    					</div><!-- .entry-content -->
    				</div><!-- #post-## -->
    
    				<?php  comments_template( '', true );
    				endwhile; ?>
    
    				<?php if($nirvana_pagination=="Enable") nirvana_pagination($the_query->max_num_pages); else nirvana_content_nav( 'nav-below' );
    
    			 ?>

    And finally to show the single page with the sidebar too what i did was altering my functions.php to this:

    add_action('template_include', 'load_single_template');
      function load_single_template($template) {
        $new_template = '';
    
        // single post template
        if( is_single() ) {
          global $post;
    
          if( has_term('tech-blog', 'category', $post) ) {
            // use template file single-template-cat-1.php
            $new_template = locate_template(array('single-template-cat-1.php' ));
          }
    
        }
        return ('' != $new_template) ? $new_template : $template;
      }

    And created a file named: single-template-cat-1.php which has the sidebar in it!
    Done…working perfect

    Thread Starter diana_levy

    (@diana_levy)

    I did get that to work by making a child theme and choosing the template i’ve created as this:
    page-blog.php which has a query for my blog categories. So I had assigned the template just for that page…@ZedCryout Thanks a lot, your answer makes me to moved in that direction

    Next question is how can I achieve to the single.php shows sidebar.
    I want to show all the posts as a blog, I mean with the right sidebar too, but again the problem is what you said above:

    The general layout options applies to the entire site (categories, posts, pages, so on) except individual pages using a different page layout template.

    I think I can use a filter in my child functions to tell wordpress that dont apply the general layout for the posts template…can you help me with this please?

    Thread Starter diana_levy

    (@diana_levy)

    @ZedCryout Thanks for answer…
    Im checking on your answer and what I can see is that the page for technlogy blog https://www.gb-advisors.com/es/category/tech-blog/ is rendering by category, which I think is causing the template not loading the sidebar.

    In my page attributes I set that page “technology blog” this way:
    Parent: About GB
    Template: Two columns, sidebar on the right
    order: 0

    Also my permalink structure shows me: Permalink: https://www.gb-advisors.com/about/technology-blog/ ?

    In my menu I see the structure is under Category (Now I know why is showing under the category page) Now the question is how to do the category shows with the sidebar?
    Do I need to set page instead of category and create a page-template for query the technology blog?
    Better to do that with a child theme?
    What will be your recommendation?
    Thanks in advanced!

    Thread Starter diana_levy

    (@diana_levy)

    @d4z_c0nf
    Yes to everything you suggested!
    I start by erasing the functions.php, after that, the includes with my custom modifications for my child, until the only file I let on server was the style.css…Nothing happened!

    Then I’ve continued by disabling plugins…with no results.
    After that I’ve changed the child theme and activated the parent…voila!!! the parent works fine, but what is very strange to me is… taking a look on this:

    [08-Oct-2015 16:22:19 UTC] PHP Fatal error: [] operator not supported for strings in /nas/wp/www/cluster-40941/trackitgb/wp-content/themes/customizr/inc/parts/class-header-nav_walker.php on line 31
    Is a file that looks in the parent theme, so why is that broken in my child but not in my parent?
    As I said before, many many doubts, just thinking is just an issue in the server, but the problem still has broken one of my sites.

    Thread Starter diana_levy

    (@diana_levy)

    @paulwpxp Many thanks for taking a look.
    I went on this all day long, it seems that is a problem related to the server
    I have another site: trackit.software In the same server, that has experiencing the same issue a couple of hours ago, then it came back and now its broken again.
    But as I’ve told you it seems to be a server issue, not a theme issue

    Thanks For answering, by now i’l mark this topic as resolved, but still many doubts in my head

    @rdellconsulting

    My new thread is in here: child-theme only renders header and logo
    Tanks for your answer…i did what you suggested with any change

    Thanks anyway!

    Hello. I see everybody on this forum got the theme broken at all.
    My issue is completly different.
    Suddenly my child theme doesnt load the content of the front-end page
    You can see that in here https://trackit.software/
    Im still able to enter to my admin panel, when i switch to the customizr parent theme works as expected, but the child theme just load the header with logo, and no more.

    I went to google inspect console…no errors.

    I’ve recently change the server from Godaddy to wpengine, I think the problem was when the DNS of the domain changed from the all to the new server, before that the theme was working fine. Does it has sense at all?
    Thanks for any help

    Thread Starter diana_levy

    (@diana_levy)

    Just to tell…I did deactivated All the plugins im using and the problem persist!
    Thanking anyone could help me!

Viewing 15 replies - 1 through 15 (of 18 total)