Forum Replies Created
list of topics you have created till now.
-
-
This is weird. I will do a test for this. Thanks for the feedback.
I checked the links you provided.
– The microphone icon is supported since Font Awesome v3.1
– The thumbs-up icon is supported since Font Awesome v3.2
The theme exactly has Font Awesome v3.0.2. I will update the icons on future updates. But, you can do it manually at this time.
Hi, try this custom css:
body.page .site-header { padding-bottom: 0px; }Hi, try this custom css:
.format-status .entry-content > p:first-child { border: none; }Hi, what is your firefox version and OS?
Hi,
– go to appearance > editor > functions.php
– find:
the_post_thumbnail( 'full', array( 'alt' => get_the_title(), 'title' => "" ) );
– edit:
the_post_thumbnail( 'large', array( 'alt' => get_the_title(), 'title' => "" ) );
Ok. Good luck.
Bloggy WP theme has v3.x icons.
Ok, I understand now. Where would you like to add the category description?
Where did you see it?
Mehmet S.
Keymaster30 January 2014 at 04:25Posted in : would like your opinion and recommendation :)2. Which certain pages?
Mehmet S.
Keymaster29 January 2014 at 14:08Posted in : would like your opinion and recommendation :)Hi,
1. You can try bbPress plugin. http://bbpress.org
2. Create a custom menu. Appearance > Menus.
Thanks
The featured image is not related to excerpt. It is about your image dimensions.
Ok. Good luck.
Ok :)
You are welcome.
Can you provide a screenshot?
Hi,
– use this in your Theme Options > External JS box:
jQuery(document).ready(function($) { var shareaholic = $( '.shareaholic-canvas' ); $( 'body.single article' ).append( shareaholic ); });You are welcome.
Hi, use this in your theme options > custom css:
.blog-single footer.entry-meta:before { color: #003399; }Please try to install a fresh copy of the theme. You can download it from ThemeForest.
Can you provide a bit info from the plugin author about the issue?
What do you mean by saying CP?
If you do not provide an explicit excerpt to a post (in the post editor’s optional excerpt field), it will display an automatic excerpt which refers to the first 55 words of the post’s content.
– I will add an option to change the default 55 words length on the future update.
You are welcome.
Hi, you can see the page-contact.php file on the right hand side list if you are using Read WP theme. This is Read WP support forum.
– The built-in contact form is not editable on fields. You can try Contact Form 7 plugin for flexible forms.
Thanks
Do you have any code in your theme options > custom css field?
You are welcome.
Ok. Good luck.
Hi, install new version in the regular way.
Thanks
Try this:
article.format-standard:before { display: block; content: "\f108"; }– tested. it is ok now.
Select post name option from settings > permalink, then try again.
You are welcome.
For #1:
– This is not possible by default, needs more further customization, you may consider working with a professional.
body.category .page-header { display: none; }Hi, you can activate the excerpt functionality for your blog page from theme options > blog > excerpt.
Note: This feature is available since v2.7
Use inline-lightbox for the pages. Please check out the Inline Lightbox chapter in the theme’s documentation.
Documentation > Shortcodes > Inline Lightbox.
Mehmet S.
Keymaster25 January 2014 at 22:50Posted in : why twice repeats the portfolio in the link?Hi, it is required functionality for this theme.
Thanks
You can try plugin’s support forum to implement it to the theme correctly. I think, the plugin author provides info about it.
Hi, make sure you are in the right forum. I replied your another question under Read WP forum, this is impressivCard WP forum.
Thanks
Hi, you can address this via category url.
Example:
– category1: has posts.
– category2: has posts.
in nav menu:
– Category 1 (site.com/category1)
– Category 2 (site.com/category2)
You are welcome.
Hi,
– go to Appearance > Editor > format-standard.php
– find:
<!-- end .comments-link -->
– edit:
<!-- end .comments-link --><span class="post-tag"><?php the_tags( "", ', ', "" ); ?></span>
Hi, build a correct menu and use theme widgets. Please check out the menu and widgets chapters in the theme’s documentation.
Thanks
Sorry, not tested with that plugin.
Hi,
1. is this on the mobile?
2. not easy.
3. check out this post.
4. learn icon name from its web page, then use in same way of the theme’s documentation. http://fontawesome.io/3.2.1/icons
5. explain more please.
Try this:
.entry-content iframe { margin-left: auto; margin-right: auto; }Hi, use this in your theme options > custom css box:
.entry-content iframe { text-align: center; }Only use full link, and the embed type of a full link;
– there are two kinds of full links, watch and embed.
– your full link above is a watch url. (you can see a “watch” word in the url)
https://www.youtube.com/watch?v=1Uxrr2GfVq4
– visit your url on YouTube,
– find “Share” tab below the video,
– click the “Embed” inside tab,
– you will find the embed code of your video in the box,
– like this: (you can see an “embed” word in the url)
<iframe width="560" height="315" src="//www.youtube.com/embed/1Uxrr2GfVq4?rel=0" frameborder="0" allowfullscreen></iframe>– only copy the embed url from the embed code and use it in your shortcode.
– this is the embed url:
//www.youtube.com/embed/1Uxrr2GfVq4?rel=0– in the shortcode:
[lightbox_video title="Bicep Stretch" url="//www.youtube.com/embed/1Uxrr2GfVq4?rel=0"]
Remove condition and try again:
– default:
while ( $loop_homepage->have_posts() ) : $loop_homepage->the_post(); $format = get_post_format(); if ( $format == false ) { ?> <li> ... ... </li> <?php } // end if endwhile;– edited:
while ( $loop_homepage->have_posts() ) : $loop_homepage->the_post(); ?> <li> ... ... </li> <?php endwhile;