Hi Guy,
I have noticed that the default menu for Figero Version: 1.6.5 is not responsive to a mobile phone.
I have tried chrome, firefox, no luck on mobile. However the website menu works well, can you assist.
Thanks you,
Jongi
When customizing the theme home page, the Fourth Feature Image will not change. I have set a different image but something is overriding it and keeping it stock. How can I get it to change? What might be overriding?
]]>Hello people,
I was wondering, is it possible to have just the thumbnail show on the home page – no summery or full text?
Thanks
]]>Why can’t you insert HTML into the theme customization anymore? if i modify the HTML on the page in shows up as tags on the page.
]]>hello-
my site will not load the theme in I.E.
works fine in Firefox and Chrome. I have also disabled plugins.
any help would be great.
Thanks
]]>I am using the Figaro theme and would like a link to the Posts page in the menu. I’ve looked in the Menus options page, but cannot see how to add Posts to the default menu.
Thanks
]]>For the integrated paypal button I have USD setup but when I click on it, it says 39.99 CAD instead of USD. This is bad because the price has always been this so I don’t want to change it but since a Canadian dollar is only 90 cents for every US dollar, I’d be losing money. Is this broken or why does it show up in CAD?
]]>I just downloaded this theme to play with on my backup site before considering it for my Woocommerce store.
So far everything works well except the widget areas are not in the sidebar. They are under the content. On a product page, or product category page, the widgets appear directly under the content.
This happens with both the primary and secondary sidebars.
]]>Does anyone know how to make the picture area bigger on the “Top Feature Area”. By which I mean the picture slot on the Welcome banner on the homepage for Figero. The picture area doesnt let you put in a picture more than 300px high. If you have a good bit of text to the left of it then the picture looks disproportionate.
Any reply would be greatly appreciated.
]]>Home page is different than the one displayed in the Figero Theme.
In my WordPress dashboard using the Figero theme when I go to “pages” my page that is set as my “home page” is completely different from the page that is displayed.
If I go to edit the home page in the pages section and click view page it takes me to a completely different displayed page. So I have two home pages one that is displayed and one that is not displayed. I can edit my displayed home page by going into theme options. But if I go to “pages” on my dashboard it is a different page and none of my edits show up. Do you know what is going on?
]]>Hi All,
As you can see from the title I’m using WP with a static front page and I’m also attempting to have a blog, this is where my problems start.
I have created the Blog page and the setting > reading settings are
Static page selected… front page = Home
posts page = Blog
Page attributes = Template = Blog page.
I’m using a figero theme.
When I “preview changes” I get the content from the homepage.
When I “view page” I get the following message “
“Sorry, no posts matched your criteria.”
Any help sorting this mess out would be hugely welcome,
Thanks In Advance
JD
]]>Hello i am having problem in paginating the comments.what should i do please help me in my code:
<?php if(!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) : ?>
<?php die('You can not access this page directly!'); ?>
<?php endif; ?>
<?php if(!empty($post->post_password)) : ?>
<?php if($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
<p>This post is password protected. Enter the password to view comments.</p>
<?php endif; ?>
<?php endif; ?>
<?php if($comments) : ?>
<ol class="commentlist">
<?php comments_popup_link('No comments', 'One comment', '% comments', 'comments-link', 'Comments are closed'); ?>
<?php comments_rss_link('RSS Feed'); ?>
<?php $i = 0; ?>
<?php foreach($comments as $comment) : ?>
<?php if ($comment->comment_approved == '0') : ?>
<p>Your comment is awaiting approval</p>
<?php endif; ?>
<?php $i++; ?>
<li id="comment-<?php comment_ID() ?>"
<?php if($i&1) {
echo 'class="odd"';
}
else {
echo 'class="even"';
} ?>>
<?php echo get_avatar( $comment, 50 ); ?>
<?php comment_text(); ?>
<p class="meta"><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></p>
<?php edit_comment_link($link_text, $before_link, $after_link); ?>
</li>
<br>
<?php endforeach; ?>
</ol>
<?php else : ?>
<p>No comments yet</p>
<?php endif; ?>
<?php if(comments_open()) : ?>
<?php if(get_option('comment_registration') && !$user_ID) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p><?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if($user_ID) : ?>
<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p>
<?php else : ?>
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Name <?php if($req) echo "(required)"; ?></small></label></p>
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>Mail (will not be published) <?php if($req) echo "(required)"; ?></small></label></p>
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>
<?php endif; ?>
Allowed tags: <?php echo allowed_tags(); ?>
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /></p>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; ?>
<?php else : ?>
<p>The comments are closed.</p>
<?php endif; ?>
<p><?php previous_posts_link('Previous Entries' );?> <?php next_posts_link('Older entries' );?></p>
above is my comments.php
and what should i do in my single.php?
<?php get_header(); ?>
<div class="container ">
<div class="span12">
<div class="row">
<div class="span8 single-post">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- post -->
<h2><?php the_title(); ?></h2>
<div class="single-entry">
<em>Article Posted on:<?php the_time('l,F,jS,Y'); ?>at <?php the_time( ); ?></em>
<?php the_content( ); ?>
<?php the_tags( ); ?>
<div class="promote">
<h3>Enjoy the Article</h3>
<p>If you have enjoy this article please subscribe to our <a href="<?php bloginfo('rss2_url'); ?>">RSS Feed</a></p>
</div>
<br>
<?php comments_template( ); ?>
<div class="postlink">
<p><?php previous_post_link('%link «' );?> <?php next_post_link('» %link' );?></p>
</div>
</div>
<?php endwhile; ?>
<!-- post navigation -->
<?php else: ?>
<!-- no posts found -->
<h2>Sorry no post found</h2>
<?php endif; ?>
</div>
<div class="span4 recentblog">
<h3>My Recent Blogs</h3>
<?php wp_get_archives("type=postbypost" );?>
</div>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
]]>
I am trying to add a drop down menu to my site but I can’t get it to work right. I installed the Dropdown Menu Widget plugin by Matt Say, but when I go to the widget page to add it the only options I have are the side bars and footers. I thought there was a way to change the regular menu to a dropdown menu. I need to be able to add sub pages to the pages listed in the navigation bar. I am using Figero by InkThemes as my theme. Any help at all would be greatly appreciated!
]]>I am trying to figure out how to control the direction (right or left) that my sub menus, and sub – sub menus pop-out from my main menu link.
Example: In my main menu bar I have a link named Automotive, under this I have a sub menu named “Service Centers”, under this I have a several sub-sub menus named “Mobil 1, Jiffy Lube, Good Year”. When I hover over my main menu link named “Automotive” the Sub menu pops out to the left, when I hover on the Sub Menu, the Sub-Sub Menu pops out on the right. I want it to pop-out on the left.
Where do I correct this at?
All help would be greatly appreciated!
Thanks,
Shawn
]]>Hi guys,
I use the Figero theme on https://www.berater-richtig-nutzen.de.
Additionally I want to add a Newsletter-Registration by Cleverreach (I have an account and installed the plugin on WP).
Everytime I add the source code no matter where, the whole TOP FEATURE AREA of the theme disappears (Logo+Picture). This happens even if I add the newsletter feature to the footer.
Somehow the Cleverreach plugin and the theme don’t seem to work togehter.
Any ideas?
Thanks a lot.
zizorro
So I know this question has been asked a million times, but nothing really explaining what to do if your site’s home page does not show up in the options when adding a static home page.
Here is my site: https://www.marketgong.com
So basically, when I go to Settings –> Reading, click on the Static Page bubble, my home page does not come up as an option to set as the front page… This probably has something to do with the theme, but this shouldn’t be an issue…
I want my posts page to be my “Blog” page.
As you’ll see, I’ve done a bit of a workaround here, as I went to menu, removed my blog page as part of the menu, and instead, added a custom link to my “Blog” category page (which has all my blogs on it), with the label “Blog.” This basically acts as my blog page now, but it’s really not the right way to go about doing this… The URL also obviously displays as /category/blog instead of just /blog like I want it to…
Is there any way to get “Home” to show up as an option to set as a static main page?
I’ve heard of crating a second home page, but will this completely remove what I already have on my home page? I want to keep the home page what it is and just add a blog page… I feel like WP should make this much more simple if a homepage is already created and completed.
Thanks
]]>I’m using Figero and want readers to be able to click on my “Read more here” text to take them to a more detailed description of the section they’re in. The files they’d go to are currently MS Word documents.
Am I missing being able to do this by copying the word files to “posts” and using the link button or do I need a specific plug-in?
My web site is https://www.redshieldtech.com and my question pertains to the 4 paragraphs at the bottom with the blue “Read more here” text.
I also posted this on the general forum.
Thanks,
Stacey
Quick question…I’m using the Figero theme and I went in to the Custom CSS to change the second header. Worked great for the first page, but then it switches back to the blue on the other pages, where I want that lighter gray scale. Below is what I put in. Is this incorrect? Anyone have any advice? Thanks, Stacey
.second-header {
background:#999999;
border-style:none;
body {
color:black;
font-family:Arial,Helvetica,Georgia,Sans-serif;
font-size:12px;
margin:0;
text-align:left;
vertical-align:top;
Unable to view Home page after making changes to Theme Options.
When I create a Home page, I end up with “2” home pages.
I’ve tried deleting and re-installing the theme without success.
How can this be fixed.
]]>When I add “ios_app id=”########” to any of my pages the sidebar moves to the bottom of the page underneath the body. I’m guessing this is a padding/margin issue, but I can’t seem to figure it out. I would like to display my ios app information to any page using this plugin on the Figero theme. Somebody help please. I appreciate it.
]]>hello,
only the home page is full width but i want every page to be full width, how do i do that?
there is only default page and blog but neither are full width.
thanks in advance,
]]>I can not get the child theme for this theme to work at all. It crashes with a HTTP 500 Internal Server Error. I have made many child themes that work well so I am not sure why this is not working for Figero. Please help urgently!
]]>I can’t get into the theme options panel. When I click “theme options” all I get is a white screen. The URL I believe is correct: https://domain.com/wp-admin/admin.php?page=optionsframework
Any ideas on how to get it working again? I’m not sure if this happened because of the last upgrade.
]]>Nice, but useless unfortunatelly, as the theme is obviously NOT using responsive design …
The width is stuck at 960px …
Pitty … had to unistall
Who still wants to use non-responsive themes these days !??
]]>Hi, very nice theme. Is this version on the repository any different to the premium version available on your website?
Thanks.
]]>