Search Results for 'block'

Results from the Forum
rishab55555
tagDiv Member

Hello Alin,

Thanks for your revert !

1. Blocks I have already added. But i want to put sub-category tags just below the heading like its there on the category page. How can it be done ?

2. It worked well, thanks !

3. It cannot be done through yoastSEO. I think you din’t understood my point. For ex :
We are on the home page of website. Now at the bottom there is a section called “Latest Articles” which is showing the latest posts made. Now this section contains pagination. No when i switch over to another page then it adds up the Page tag in the URL. I don’t want that. I want the page URL to remain the same even when i switch pages so ideally it should change through Ajax.
Let me know how can that be done.

4. Is there any other way through which this can be achieved ?

Wheelie111
Participant
#0

Hi!

I’ve been using your theme for a while now and I love it! Today I decided to “rebuild” it a little bit. On my homepage (http://tvhawks.com) I am now using Block 13 to portray the last new posts.

I was wondering, is it possible to show the FB share, Tweet and +1 button in the excerpt? Inline with the ‘Read More’ button maybe?

Thanks a lot!

Regards,
Stefan

Emil G
tagDiv Staff

Hi,

You would have to modify the block and it’s not a simple task. The code is located here – http://screencast.com/t/slHwJYvlhttp://pastebin.com/tuuAfgbm

You have to use a condition similar to the one i presented in the image, and it will require custom classes and css for each case. If you don’t know how to doit i suggest that you look for a professional developer to help you with this task.

Thank you!

  • This reply was modified 10 years by Emil G.
  • This reply was modified 10 years by Emil G.
tudor_r
Participant
#0

Hi there, so I have 2 problems.
1. My search from main navigation bar is super slow, but the rest responds well.

2. I placed the code to remove render blocking css/js, but the next steps I can’t make. Didn’t appear any text.
Like here: Image

URL of my site: http://www.safemuscles.com

Alin [tagDiv]
tagDiv Staff

Hi,

Please try to create a new page using the same blocks and see if you still have this issue, it may be a database error only for this page.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

The block 20 is made using this module(14), on fashion demo page this block is used – http://screencast.com/t/ve66mm0q So you can also use this block on your page from Visual Composer elements – http://screencast.com/t/Yn0fTCk27Xb

Thanks!

Thomas
tagDiv Member

Thanks for the CSS.

It is not exactly what I need (because even if the caption is hidden, it take space so it is why it will be better to have it ON the image exactly like my example: http://www.lefigaro.fr/actualite-france/2015/08/22/01016-20150822ARTFIG00038-comment-trois-amis-d-enfance-sont-devenus-les-heros-du-thalys.php ).

If with a CSS code hack it is possible please fill free to give me the right code! 🙂
Of course, put this update in the correct thread.

Another idea:

On the posts at the end, there a block for the name of next/previous articles.

On some theme and plugin, those information a outside of the boxed.
Near left and right border of the browser, you have big arrows.
When you go on it, name and photo of next or previous article appears.

Very cool feature beacause you could see more due to the photo and in the same time save space under the article.

  • This reply was modified 10 years by Thomas.
Alin [tagDiv]
tagDiv Staff

Hi,

Not sure what you mean please provide a link and more details. If you refer to the block title you can change from block settings – http://screencast.com/t/MId9UP4wH

Thanks!

lospicos
tagDiv Member

ı have done this

@media (max-width: 767px) {
.td_block_big_grid_1 .td-big-grid-wrapper .td-big-grid-scroll {
white-space: normal !important;
}
.td_block_big_grid_1 .td-big-grid-wrapper .td-big-grid-scroll .td-big-grid-post-1, .td-big-grid-scroll .td-big-grid-post-2, .td-big-grid-scroll .td-big-grid-post-3, .td-big-grid-scroll .td-big-grid-post-4 {
width: 99% !important;
margin-left: 0 !important;
}
.td_block_big_grid_1 .td-small-thumb .entry-thumb {
width: 99% !important;
}
.td_block_big_grid_1 .td-big-grid-post-1 {
margin-bottom: 3px !important;
}
.td_block_big_grid_1 .td-big-grid-post-2 {
margin-bottom: 3px !important;
}
.td_block_big_grid_1 .td-big-grid-post-3 {
margin-bottom: 3px !important;
}
.td_block_big_grid_1 .td-big-grid-post-4 {
margin-bottom: 3px !important;
}
.td_block_big_grid_1 .td-big-grid-post-2 {
margin-right: 1px !important;
}
.td_block_big_grid_1 .td-big-grid-post.td-small-thumb .td-big-grid-meta .entry-title {
font-size: 14px;
}
}

and as a result ı have this

To have all of the on the same line vertically and same height

How i can do that?

Alin [tagDiv]
tagDiv Staff

Hi,

This is the default css for block 9 – http://screencast.com/t/Bz4eeEEC The padding and margin is added on module 8 so you can target block 9 to reduce the space(if this is what you want to do) – http://screencast.com/t/cEovuLLPlP07

.td_block_9 .td_module_8 {
padding-bottom: 10px;
margin-bottom: 10px;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your page and did not found any issue when View as Photo is set – http://screencast.com/t/f3MKDlXs0PL please clear cache.
Regarding custom modifications, you will have to create a new page template to be used on events page, please check how default page templates are created(and create something similar in the root of the theme use something like page-yourtext.php) – http://screencast.com/t/LvbeNI7Hj3Q register a new sidebar in(like Footer columns) for example – http://screencast.com/t/9lJHWa38rF5

register_sidebar(array(
        'name'=> 'extra',
        'id' => 'extra-widget', //the id is used by the importer
        'before_widget' => '<aside class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<div class="block-title"><span>',
        'after_title' => '</span></div>'
    ));

It will appear in the Widgets section so you can drag widgets to it – http://screencast.com/t/aJZ6TTz7 And use it in your custom page template, instead of <?php get_sidebar(); ?> use dynamic sidebar code:

<?php dynamic_sidebar('extra'); ?>

You can do this if you have basic experience.

Hope this helps!

Alin [tagDiv]
tagDiv Staff

Hi,

1. If “States” is a page you can use Visual Composer to add blocks on your page and filter articles by specific “States” subcategory like it is on the other page – http://screencast.com/t/V4Phfr3F
2. You can hide it via custom css in Theme Panel – http://screencast.com/t/kG3sr3Mn

.td-category-header .td-category-pulldown-filter {
display: none;
}

3. Like Christopher suggested you can use SEO by Yoast plugin to control titles, use seo codes – https://yoast.com/articles/wordpress-seo/#wpseo-plugin-titles
4. Unfortunately the megamenu was not designed for mobile menu, so it will not display the page content there.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the Single Image block is not apart of the theme, you will have to edit the Visual Composer file to do that, try to search after wpb_singleimage_heading in the code and move it bellow the image.

Thanks!

pinpinhuang88
tagDiv Member

Hi Alin, just face the same issue as stated above.. it is a little weird of how this image crop is working.. if i see the demo install of newspaper default.. the image is set as featured with size 1068×712 or 1068×709 and in the demo install it is well sized either on the big grid layout, on the footer thumb block, on the search block.

this is my demo install http://demo.howtoproblem.com/. I refer to the post “Simple form creation and storage, built for developers.” Fyi. I have tried to resize my image manually from photoshop to 1068×712 then i set as featured and i run the regenerate thumbnails but on the search result block the image is not well sized.. if i inspect element it shows that the image is resized to 150x150px ? dohh.. could you give us the best tricks for this issue ? this really time consuming issue..

Thanks in advance. Have a nice day.

Alin [tagDiv]
tagDiv Staff

Hi,

If you have on page templates “Homepage – with article list”, this means that you have version 4 of the theme. So you can use module 1 to display entire content of the post, insert the read more tag to cut the text where you wish. Please note that no block was designed using this module(this module use post text content, it not using excerpt like other modules) so it can be used only for blog page, category page, latest articles.. If you want to display latest articles using module 1 please check page settings – http://screencast.com/t/0LxtKaotr

Thanks!

Alvaro TCE
tagDiv Member

Another query, I want to home in the block 15 on a dark background but the text is in black and white letter nesecito. As the source is changed colo?
Thanks a lot for the help

sirajcmr
tagDiv Member

Hi

Okay, I followed your instructions to move CSS and used following code:

$this->move_style_to_footer_queue(‘td-theme’);
$this->move_style_to_footer_queue(‘js_composer_front’);
$this->move_style_to_footer_queue(‘google-fonts-style’);

and I did pagespeed test at:

https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.windowsmechanic.com%2F

Under the Desktop section, I find most of the CSS have moved to footer and “Eliminate render-blocking JavaScript and CSS in above-the-fold content” now kinda Okay. Good Job here and thank you for help.

But under Mobile section of page speed (please check my pagespeed link), I do find same CSS files are blocking. Especially google fonts. But we already have the following codes in the td-speed-booster.php

$this->move_style_to_footer_queue(‘google_font_open_sans’);
$this->move_style_to_footer_queue(‘google_font_roboto’);
$this->move_style_to_footer_queue(‘td-theme’);
$this->move_style_to_footer_queue(‘js_composer_front’);
$this->move_style_to_footer_queue(‘google-fonts-style’);

Any Idea why the same CSS blocking message appears again under the mobile section of page speed ?

Do we have any other section in td-speed-booster.php where I need to add code to change my pagespeed score (Mobile) higher?

Regards
Siraj

tudor_r
Participant
2 Problems - topic
#0

Vreau prima data sa va felicit pentru aceasta tema de top! Foarte frumoasa si rapida, dar din pacate am 2 probleme.

1. Search-ul din main navigation bar merge foarte incet.
2. Am introdus codul pentru “Remove render blocking css/js” dar nu am reusit sa trec la pasul urmator, si anume nu mi-a aparatu acel text sa il pun intr-un fisier .txt.

URL: http://www.safemuscles.com

Steven
tagDiv Member

That editors pick block came build in to the theme to get that you will first have to turn on the footer feature..in the theme settings footer and choose “style 1″ also you can’t change the post because it’s a build in feature with the theme.. if you want your own then you can choose some thing like ” style 5″ and add your own block and name the title “editors pick” if you want…

Well i don’t work here i only help out when i can,so if i can’t answer all your questions you have to wait till tomorrow morning when the support team come on line and they might find a better way to help you…

  • This reply was modified 10 years by Steven.
Steven
tagDiv Member

If you already have videos and they in Categories already all you have to do is add each Categories of videos to which video block you want, and what you calling a slider is called “Big Grid 6” on the demo video page if you want a slider you can use “Big Grid Slider where you can find through the Visual Composer as well…

Here is some info to help you add the videos…https://forum.tagdiv.com/featured-image-or-video/

Setting up the video page is no different then setting up a “About page,Contact Page, etc it’s the same way and use the same opitions,instead of posting a featured image to a post you will be posting the video image instead in the Featured Video section on the right side…

Read the Documentation>>> https://forum.tagdiv.com/wordpress-information/ it will help you understand more….

  • This reply was modified 10 years by Steven.
  • This reply was modified 10 years by Steven.
lbinternet1
Participant
#0

Hi

I am using your newspaper theme and its a nice theme however I need help with my settings. I am building a video site and I want the formats for be like your demo video themes. I had a previous video site that I using another theme before, I now change it to your theme and using the video format however there are settings that are not working according to your video demo.

1) How can I get the video slider on the home page?
2) Where can I add the adsense code?
3)Why is the settings on the home page being duplicated eg the posts block layout?
4) when I change the theme to your theme I noticed I have lost all the previous url links that I got from Youtube?
5) How to post videos? Looking at your demo example it showing a video while my site is showing an article formats posting.
6) The streaming video section how can you enter the codes from youtube, what I mean, what info do you copy from Youtube to get the same format?
7) Editors Pick – how to set that option on the footer?
8) How can you allow user to add videos in the front page and the option to register on the site. How to submit Youtube videos on the front page?
9) Your sort code buttons is not easy to use, how to follow it to understand it?
10) Visual Composer – what is it use for and how to use it? If you use the theme demo would you need to add more visual composer?
11) The block setting how to use it and how it works with the widget?

I can provide password and login details including site url to check the settings from theme supports help team. Email me at avcupload@gmail.com

ruslangr
tagDiv Member

in fact I did, all my widget blocks are set to posts and pages sidebars. It is how I understand set for default. What is funny thought, when I’m trying to clone this row, it appears and looks great – I’m getting four different rows, but the second I hit upgrade, it goes away. What I’m doing wrong?

Thanks!

lospicos
tagDiv Member

I have tried but.
That codes was for
first row 1
second and 3rd row two blocks.

I need 1 post in every row.

Regards

simchris
tagDiv Member

@doucare1971
Yup, well unless you charge for access, ads are one of the only forms of revenue for some folks, even if they continue to be “diminished” due to ad blockers. 30% of ad shows is still better than no ad shows. Aside from programmatic content (paid content), affiliate links, tip jars, and whatnot, ads are still one of the only ways to pay for revenue from websites in publishing. So, while they are not as useful, they cannot be dismissed as pointless unless you’re donating your time to run your website for free and don’t have the overhead of servers, software, theme, labor, plugins, extensions, etc.

Sadly people don’t want to pay for content, don’t want to see ads, and then insult people when they make the content in the comments. Hilarious. I guess the folks who live with their parents and want their student loan dismissed really shouldn’t be anyone’s target audience, but sadly the millennials are taking over 🙂

(I am kind of kidding a little there … )

doucare1971
tagDiv Member

Please don’t take offense on what I say here. I think ads are almost pointless now to use, because of the adblock extension for browsers. A lot of people are using adblock and that keeps people from seeing ads. I hope you figure something out. I am using Zergnet and that is even used as ads and blocked by adblock. I have adblock myself but bypass it on my website. I am sure I am not getting much from Zergnet, because of this adblock extension that others use. I wish there was a way to unblock people from using adblock, but oh well. I use it for the other sites I go to. There is a lot of websites that have way too many ads that you are side tracked from seeing the real content.

Viewing 25 results - 34,601 through 34,625 (of 39,816 total)