Forum Replies Created
list of topics you have created till now.
-
-
No, I don’t use them.
You are welcome.
You can download the latest version from ThemeForest and install it via wp admin.
Note: WordPress provides update notifications for the free themes under wordpress.org theme directory.
There are some invalid chars for the contact form shortcode.
– Switch to the Text tab of the content editor in your contact page.
– find contact from shortcode.
– Use the shortcode like this:
[contact_form to="yourname@yourmail.com"]
– When I check your site’s source code, I see this:
<em>romain.hagege@gmail.com</em>«
Hi, update your theme to the latest version and try again please. You can download it from ThemeForest.
Thanks
You need to create a custom menu and must use custom theme widgets. Please check out the Menu and Widgets sections in the theme documentation.
Hi, “Home & Search” buttons appear automatically in pages.
Here are from demo site:
http://themes.pixelwars.org/cvcard-wp/form-elements
http://themes.pixelwars.org/cvcard-wp/typography
http://themes.pixelwars.org/cvcard-wp/shortcodes
Thanks
Hi,
1. You can change required messages from js/jquery.validate.min.js file.
2. Use this in your custom css box:
.error404 .vs-nav li + li { display: none; }Thanks
Update your theme to the latest version and try again please.
Hi, update your theme to the latest version and try again please.
Hi, here is screenshot of the plugin page:

It is weird. Maybe it is related to your server configuration. Contact your server people. Alternatively you can try Contact Form 7 plugin.
Sorry, not tested with that plugin.
Hi, it is not possible by default to use the middle section of the theme for blog posts. But, you can activate the Resume Page Blog from Theme Options > Blog to show blog posts on the left side.
Thanks
Yes, you should.
You can use this site to place code here.
Hi, please follow the steps in the theme documentation to setup the theme correctly.
Note: Do not use theme customizer.
Thanks
Hi, update to the latest version. You can download it from ThemeForest.
Thanks
Fill the field at Settings > General > Site Title.
Thanks
Hi, deactivate your plugins and try again. If ok, then activate theme one by one.
Thanks
Add cat as a last parameter.
You are welcome.
You are welcome.
You are welcome.
Hi, use External JS and Custom CSS fields:
– add your font source file to Theme Options > Style > External JS field.
AND
– add the css code to Theme Options > Style > Custom CSS field.
Thanks
Hi, you can use align buttons.
See in the image:

Hi,
– it is weird.
– try to set yes its option from theme options > blog > All Post Formats on Homepage.
Thanks
Hi, not tested but you can try them.
Thanks
Hi, check out the Customization > Icons section in the theme documentation for complete set of icons.
Thanks
Hi, create a custom menu to have drop down.
Failed message is related to some images from demo site. Not important.
Thanks
You are welcome.
Can you provide a screenshot?
Hi, use this in your theme options > custom css box:
#about-me .caption { display: none; }Thanks
Hi,
– go to: Appearance > Editor. You will see the theme files on the right.
– edit these files:
For post page:
post-sidebar.php post-nosidebar.php
For blog page:
format-standard.php
– find:
<a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo __( 'View all posts by ', 'read' ) . get_the_author(); ?>" rel="author"><?php the_author(); ?></a>
– edit:
<a class="url fn n" href="http://www.facebook.com/username" rel="author"><?php the_author(); ?></a>
Sorry, not tested with that plugin. You can check out its support forum.
Hi,
1) Upload your image logo from Theme Options > General > Image Logo.
2) Use this in your theme options > custom css box:
– for blog page:
.blog .entry-title h1 a { color: #F01212; }-for post page:
.single-post .entry-header h1 { color: #2BF54C; }3) Please create a new topic for this.
Thanks
Hi, thanks for the feedback. I will improve the documentation.
– For portfolio: Select “Post name” option from permalink settings.
– Can you provide your url to see your contact form?
You can see the “Insert Shortcode” button in the image:

Hi, you an change it from Theme Options > Portfolio .
Thanks
Edit the above CSS code:
@media screen and (max-width: 767px) { .site-header .row { position: relative; } .site-header .textwidget { position: absolute; top: 0; } .site-header #searchform { position: absolute; top: 0; right: 0; } }You are welcome.
Can you share the shortcodes you tried?
You are welcome.
Hi,
– open js/main.js file.
– find:
// BLOG MASONRY // cache container var blogAnimEngine = $.browser.mozilla && $.browser.version > '2' ? "jquery" : "best-available"; var $containerBlog = $('.blog-masonry'); if($containerBlog.length) { $containerBlog.imagesLoaded(function() { setMasonryBlog(); $(window).resize(function() { setMasonryBlog(); }); // initialize isotope $containerBlog.isotope({ itemSelector : '.hentry', layoutMode : 'masonry', animationEngine : blogAnimEngine }); setTimeout(function() { setMasonryBlog(); }, 1000); }); } // if($container.length)
– edit layoutMode to:
layoutMode : 'fitRows',Found a solution, try this way:
– add your social icons to your header with shortcodes and Text widget.
– add Search widget to your header after Text widget.
– use this in your Theme Options > Style > Custom CSS field:
.site-header .row { position: relative; } .site-header .textwidget { position: absolute; top: 0; } .site-header #searchform { position: absolute; top: 0; right: 0; }See in the image:


Hi, it is not possible by default.
Hi, you can create a second menu and use it with Custom Menu widget in the sidebar or footer widget locations.
Thanks
Try this way:
– add this to the end of your theme’s functions.php file before the closing chars
?>add_filter( 'the_content', 'custom_content' ); function custom_content( $content ) { if ( is_singular( 'portfolio' ) ) { $content = $content . show_eap_ad_1(); } return $content; }Thanks for the feedback.
After this line:
<!-- end Content Editor -->