You need to click settings in the top right part of the screen and but tick in front of the excerpt in order to allow this field appear
Super! Is there any way to keep links in that field in order to let them appear on the main page?
Thank you. That works perfect!
Hello Bogdan,
I meant I want it look like here https://gyazo.com/28e0fa79a2ac8f14c197b2a4a417f562 So I’m just looking for that code in order to just add it there
Thanks a lot! It works perfectly. Probably you may also advise where to get the code of this header to make the same one (but another text) appear above my advertisement — https://gyazo.com/ab2c51c1456b4eb14ff13609f5e65246
Hello Bogdan,
Unfortunately it seems that it didn’t help. After I choose footer style 8 http://screencast.com/t/5kXKtJd6y I recive the following footer https://gyazo.com/911152a9b8c4073a6e7de43b9f2a2741 It has logo + information and email + social networks placed horizontally
What I would like is to have the following footer https://gyazo.com/004c523cb10c5d7f0c5d624e8e137738 where I have logo + info + social networks placed horizontally
Can you please help?
Now it is ok, but it was displayed as here https://gyazo.com/f63c3c8e0c56ca765b0f50c1864eb717 for several hours.
1. So does it mean I can’t just import settings to make everything look the same as in your examples and futher adjustments are required? What I did is pressed import including content.
2. “You need to add grids or blocks to the tab sections in visual composer and make sure you set the block elements to a category that has posts to display.”
That’s how it looks right now https://gyazo.com/11e08489d87b60d7610cb39a6ddcc0ad Would you please advise where do I press to select a proper category
3. “As for the footer, you can set it up to your liking from the theme panel -> footer section” — I’m afraid I didn’t quite get where do I need to click in order to receive completely the same result as in your template
Hello Catalin,
When I switch to the default theme or another theme (I tried 3 themes in a raw) I do not experience any issues with images displayed in search.
I also deleted theme and installed it from the very beginning, turned off all plugins except Visual Composer, but it didn’t help (I did it 2 times just in case). 🙁
Thanks
Off course I followed all instructions described in the manual and installed all necessary plugins
Hello,
Thank you Bogdan. For PC version it worked perfect. But the issue is that even though post style 5 is chosen in tablet version 2 images appear one after another (featured one and first one) ( Can you please let me know how to fix it?
Hello Catalin,
I’m using http. I also tried manual translate it, but the issue still remained (
https://gyazo.com/40778861b0a51bcfc5deb2dffcf79058
https://gyazo.com/4f55aa3ad583efdda55ddedba069381b
It was used from the very beginning. As I mentioned, it works perfectly in PC version
Still do not understand what steps are required to be made by me in order to make the code work in the child theme 🙁
Ehhh. I didn’t get this one ) Did you see my last mail? As I am mentioned you suggestion regarding post style 5 works perfect for me. I do agree with it.
What I am asking is how do I set post style 5 for all older post starting from today and older, but set other post style for every new post? How do I do that?
I see. I think that solution can work perfect. Can you please advise how do I set post 5 template for all older post (20k posts) starting from today and older, but set other default post type for every new post? How do I do that?
I cleared the cached both on tablets and in website plugin, but the issue is remained. I checked via different phones to make sure.
I’m talking about this web site — freesmi.by
But the theme won’t work properly without fixing this issue 🙁 I belive it referes to the “Assistance with reported issues” mentioned here http://themeforest.net/page/item_support_policy I have an issue — my pictures are duplicating and part of the theme functionality is not available for me until it is fixed by removing the first picture of the post.
And how to provide the higher priority to the code in the child them than the code from the main theme?
For now I added this code to the functions.php of the main theme
<?php
add_action( 'init', 'videogames', 0 ); //exit;
function videogames() {
register_taxonomy( 'lydi', 'post', array( 'hierarchical' => false, 'label' => 'Люди', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'temi', 'post', array( 'hierarchical' => false, 'label' => 'Темы', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'strani', 'post', array( 'hierarchical' => false, 'label' => 'Страны', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'istochniki', 'post', array( 'hierarchical' => false, 'label' => 'Зарубежные источники', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'organizacii', 'post', array( 'hierarchical' => false, 'label' => 'Организации', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'regiony', 'post', array( 'hierarchical' => false, 'label' => 'Регионы', 'query_var' => true, 'rewrite' => true ) );
}
The code works perfectly, but I can’t understand how to placed it in the child theme.
It is very important for SEO of the web sites
Our theme displays the featured image on the post itself so there is no need to add the image again in the post content itself.
I know, but the issue is that in my previous theme there were no such support of the thumbnail featured image, so I was forced to add the first image of the post. So there are more than 20.000 posts with the images which are displayed below the featured image. To remove them manually it will take ages.
unfortunately there is no automatic way of doing this
I found the following code for functions.php that make it automatic
function remove_first_image ($content) {
if (!is_page() && !is_feed() && !is_feed() && !is_home()) {
$content = preg_replace("/<img[^>]+\>/i", "", $content, 1);
} return $content;
}
add_filter('the_content', 'remove_first_image');
This removes the first image from displaying on the front-end, but
– it leaves it in the Editor
– it also doesn’t remove the caption
Probably you may advise on some other way of removing the first picture when it is removed from the editor and when it is also removes the capture?
thanks.done. Ideally it would be great if there is any possibility of adding td_social_icons and td_block_social_counter for child theme support.
for the test reasons, can you please give me any code for the functions.php child theme in order to check if my child theme support works properly?
Actually I already did it 2 times
1st time with this plugin — https://wordpress.org/plugins/regenerate-thumbnails/
2nd time with that plugin — https://wordpress.org/plugins/force-regenerate-thumbnails/
I followed the instructions very carefully. Unfortunately in both cases it didn’t help 🙁
Thank you. Does it mean I would need to change that code after every them update?