Search Results for 'block'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

Please search page about us and contact us in page section – http://screencast.com/t/Gps1S1rd23 edit those pages and remove row that contains separator and big grid 5 blocks these blocks are added there using Visual Composer – http://screencast.com/t/4G4xJ6h6pu

Thanks!

Emil G
tagDiv Staff

Hi,

1) Try the following css:

.td-footer-template-4 {
padding-top: 5px;
padding-bottom: 0px;
}
.td-footer-info {
margin-bottom: 5px;
}

2. Try the following css:

.td-footer-info .td-social-style-2 .td-icon-font {
font-size: 20px;
}
.td-footer-info .td-social-style-2 .td-icon-font:hover {
color: red;
}

4. The easiest solution would be to disable automatic positioning on taboola and look on their documentation (i suspect you use a plugin for it) for a shortcode, then use the do_shortcode() function to place it on the desired location inside the post template files (loop-single default and 1-11). – https://codex.wordpress.org/Function_Reference/do_shortcode

5. You have to add it in each post template file like this – http://screencast.com/t/nAaP3gTWp

<?php echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'custom_ad_1')); ?>

Thank you!

  • This reply was modified 11 years by Emil G.
  • This reply was modified 11 years by Emil G.
Marius
tagDiv Staff

Hi,

Just edit the block and go to Ajax filter tab and on The Ajax dropdown – show the followings ID’s you need to write you categories ID ‘s that you want to have it http://screencast.com/t/FTMDEfQg

If you leave empty will display all your categories.

Thanks for the message!

Emil G
tagDiv Staff

Hi,

We use xampp installs for testing, we didn’t tested other tools so i cannot recommend you something else.

First backup the site files and database, in case something goes wrong you just use the backup to restore the site. Usually c-panel comes with an option for this, or you could do this manually – https://codex.wordpress.org/WordPress_Backups

You can’t keep the old theme in the same folder, you either delete it an install the new one or move it to another location.

In v6.1 we fixed some of the issues which were reported on v6.0:

[ Version 6.1 ]
- improvement: added global colour for block headers in General theme colors section
- improvement: now you can change the fonts on Lists in post content from Theme panel
- improvement: added .screen-reader-text class for better usability
- improvement: visual composer updated to the latest version
- improvement: better documentation + first video tutorials
- fix: UI improvements, key images now have a specified height, this prevents repaints and it makes the page appear that it loads faster
- fix: unique articles work now as expected
- fix: better review import from version 4
- fix: speed booster 4.1 works better now + buddyPress fix
- fix: big grids on iOS where missing titles until touch
- fix: block 20 css fix + speed booster
- fix: content bottom and top content ads css fix for safari, firefox and IE
- fix: various css fixes
- fix: social counter instagram
- fix: main menu z-index
- fix: missing Ajax filter option for IOS slider
- fix: visual composer single image block alignment issues
- fix: space issue when turn off the top menu on header style 12
- fix: the ajax dropdown filter sometimes disappeared when the mouse was moved down to select ca category
- fix: ajax filter - was deselecting all the selected filters from the page on click
- fix: better alignment on reviews

We may consider releasing beta versions in the future, thanks for your suggestion.

Thank you!

  • This reply was modified 11 years by Emil G.
Alin [tagDiv]
tagDiv Staff

Hi,

You can add categories ids that you want to appear on block dropdown menu – http://screencast.com/t/vvuabtfRZ
Or if you want to order subcategories to appear first there, you will have to alter the code and add order by slug – http://screencast.com/t/ChR7T1os7d change slug name for categories that you want to appear first – http://screencast.com/t/sM0CQZz9

'orderby'=> 'slug'

Result: http://screencast.com/t/1E3Lfo52Qo3

Hope this helps!

Emil G
tagDiv Staff

Hi,

Try the following css: – http://screencast.com/t/shsS3KBo

.td_block_big_grid_2 .td-module-title a{
background-color: rgba(214, 77, 236, 0.7) !important;
}

or:

.td_block_big_grid_2 .td-module-title{
background-color: rgba(214, 77, 236, 0.7) !important;
}

Thank you!

  • This reply was modified 11 years by Emil G.
Marius
tagDiv Staff

Hi,

Here is an example with Block 14 with complete white images and you will see that the text have a black gradient to make the text visible. http://screencast.com/t/WpROkqaZWNE5

If you want more darker you can apply a transparent black on entire module to make the text more visible. Use this CSS and adjust the opacity like you want, that value 0.3 from background-color:

.td_block_14 .td_module_mx1 .td-module-thumb:before {
content: '';
width: 100%;
height: 100%;
display: block;
background-color: rgba(0,0,0,0.3);
z-index: 0;
position: absolute;
top: 0;
}

result: http://screencast.com/t/q7BwGeD1

Thanks for the message!

Alin [tagDiv]
tagDiv Staff

Hi,

If you use adblock on your browser please disable it and see if it appears.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I’m afraid that it is not recommended by Seo to use h1 to the logo, the best way is to add a text block in your sidebar and add an h1 tag there.
Also maybe helps – https://yoast.com/blog-headings-structure/https://yoast.com/articles/wordpress-seo/

Thanks!

Alin [tagDiv]
tagDiv Staff

Buna,

Daca vrei sa adaugi content in pagina de forum, poti crea o noua pagina denumita Forums si sa folosesti shortcoduri – http://screencast.com/t/l3qDftKrgH De aceea am adaugat documentatia pluginului – https://codex.bbpress.org/ si forumul se poate accesa aici https://itutorial.ro/forums/

5. Incearca te rog aceasta solutie – https://forum.tagdiv.com/topic/newspaper-6-upgrade/#post-54686
6. Incearca totusi si fara plugin-uri, lasa doar Visual Composer activat, da clear la cache si incearca din nou. Daca tot ai aceasta problema trimite un mail la contact@tagdiv.com si da-ne acces sa ne uitam si noi de asemenea specifica problema si un link la acest topic.
7. Se poate cu ajutorul functiei do_shortcode sa-l afisezi de exemplu sub meniu si va aparea pe toate paginile/articolele iei shortcodul din pagina – http://screencast.com/t/PvC5klsnn si il adaugi in header style care il folosesti intr-un div – http://screencast.com/t/DjeiIu0n

<div class="td-container">
<?php echo do_shortcode('[td_block_trending_now limit="5"]');?>
</div>

Result: http://screencast.com/t/mnvGjWdA

1. Se pare ca lipseste documentatia pentru smart list(am trecut-o pe todo si o sa fie adaugata). Poti vedea documentatia de la Newsmag, se aplica in acelasi mod doar ca stilurile le poti gasi aici( http://screencast.com/t/ZhN4WjoX3 ) – https://forum.tagdiv.com/smart-list/ De asemenea acest topic poate ajuta – https://forum.tagdiv.com/topic/smart-lists/
2. Din pacate ai nevoie de modificari in tema pentru a obtine acest lucru. O cale mai usoara ar fi sa nu mai folosesti article top ad, ci un custom ad pe care sa-l afisezi dupa featured image pe template-ul care vrei – http://screencast.com/t/IXOzj4Cf0oc daca te referi la ad-ul special pentru stilul 1 acesta il poti muta asa – http://screencast.com/t/ATZMdDfux
3. Foloseste acest css in Theme Panel > Custom Css – http://screencast.com/t/lG6Gal6P9

.td-header-menu-wrap.td-affix {
background-color: white;
}

Mersi!

Radu
tagDiv Staff

hi,
unfortunatly the theme does not support that out of the box, I think you can modify our ad shortcode like so http://screencast.com/t/lHkH04FvG

if (is_user_logged_in()) {
   return '';
}

if you don’t want to edit the block directly, you can use the theme api to replace it with your own implementation: https://forum.tagdiv.com/api-blocks-introduction/

  • This reply was modified 11 years by Radu.
skyride
Participant
#0

I want to have a block that provides options to select each of the sub categories to display.

So that you can select which sub cat to view and it will show 5 posts from the selected sub cat.

I cannot get it to work.

I tried enabling ajax drop down but it shows those categories plus others that I don’t want it to show.

Here is a screenshot from my other site with the exact outcome I want:http://www.mediafire.com/view/8hacag1mg9mzncj

Thanks,

Kane

neakriti
tagDiv Member

Very nice! You defined your new dimension, applied it to your Template3.

So by defining a new dimension, it appeared automatically in the block settings?
So only you had to enable it and regen thumbs?

  • This reply was modified 11 years by neakriti.
  • This reply was modified 11 years by neakriti.
jansena
tagDiv Member

Okay… now I have fixed it. I had to enable the in the theme panel in block settings > thumbs on modules & blocks the new defined format.

Also I had to delete the cache file in wp-content. Because after done all these 3 steps I still had the old version. But not it seems I have fixed it (locally)

wpfan3751
tagDiv Member

THANK YOU!!!!!!!!!!!!!!! LOL…I can finally edit VC blocks again. I had no idea I needed to click on the user groups to enable the shortcodes. Jumping for joy. Thanks again.

wpfan3751
tagDiv Member

Hi,

This is the same problem I’ve been having since I upgraded and updated. The icons for editing individual blocks are not there. I can only move or delete whole blocks but not edit. Please help. I haven’t been able to use any of the really nice looking homepage templates.

I also have a notice on my dashboard that says: “Important notice: You have an outdated version of Visual Composer Design Options. It is required to review and save it.”

Any help to fix this will be appreciated.

neakriti
Participant
#0

Hi, with the introduction of Newspaper 6.1,

in the “Theme colors”->”GENERAL theme colors”->”THEME ACCENT COLOR” you can select a generic accent color. While red for example looks good for general use like highlighting the current page, I still prefered the black for widgets as it was in version 6.0. However there is no color option for default widget titles.

If you liked the dark background on the widgets but want some different color on your THEME ACCENT COLOR option, add the following code to your custom CSS.

aside.widget > div > span{
background-color: #333333 !Important;
}
aside.widget > .block-title{
border-color: #333333 !Important;
}

This applies to third party widgets. For tagdiv widgets you can customize the color of the title from the widget directly.
`

nebulonni
tagDiv Member

Ok, here is a little CSS fix for the Big Grid 2. It should work. 🙂
Just paste this in Newspaper / Theme panel / Custom CSS.

.td_block_big_grid_2 .td-small-thumb .td-module-thumb {
width: 305px;
}

Mark
Participant
#0

Is it possible to have Block 14 have the same style affects that the Big Grid images have?

I think it would look sharp to change that. Right now the font color for that is white and I cannot read the post title since most of my images are majority white.

– Thanks

surfpark
tagDiv Member

1. How do I erase the excess pink space from the top of footer to snap closer to logo and same with bottom of footer to snap closer to social icons?

I think those areas have some padding due to the possibility to include some ads in those spaces. It looks like the height of the footer is hardcoded to be 1164×389. It is element ‘td-footer-wrapper td-footer-template-4’. You could change it in your style sheet.

2. How do I make the social icons in footer menu a bit bigger? And how do I make the hover colour on those icons a solid purple colour instead of the colours constantly changing?

The footer social media icons are designed to be 40×40. You’d have to change the styles too. Look at the following elements in your CSS: td-social-style-2 and td-icon-font. If you’re going to make several edits to the stylesheet, consider making a child theme.

3. Chris’s Pagespeed Custom Code no longer works (the one that you post at the end of the functions.php – will he be coming out with a new one that works with Newspaper 6?)

Have you upgraded to v6.1 of the theme?

4. How do I move the bottom share options (at the end of my posts), above my taboola advertisement so that they appear right at end of article?

Go to your dashboard. Theme Panel>Post Seetings>Sharing. You should see toggles to move the social sharing buttons.

5. Is there a code so that my custom ad 1 will appear underneath (or above) the author box?

I’m not sure if it always inserts it below ads. I think the author box is placed there via the posts template. You can attempt to mess with the posts templates to see if another one places the author box higher. Go to dashboard. Theme Panel>Post Settings>Default Post Template.

sarang44
tagDiv Member

Hello latest visual composer active, after updating to Newspaper 6 blocks not showing in background, and even with default page templates not able to edit. For reference screenshot links given below..

tried with database update and without update, same Problem. Also tried with deactivating all plugins expect visual composer.

No Blocks – http://s28.postimg.org/pamrzdw65/image.jpg

Not able to edit default template – http://s28.postimg.org/adeaydixp/image.jpg

station
tagDiv Member

1) Yes, that’s what I was trying to change

2) Where do I change the colours exactly? – how do I know which widget uses which colour block? :-\

Radu
tagDiv Staff

Hi station,

1. on the footer I do not understand what you are trying to change. are you reffering to this? http://screencast.com/t/VwMin8jt3Pgx

2. on widgets and blocks you can use the color preset option http://screencast.com/t/1XJN0VW7I This will indeed change the background color and the label for that block. The color presets can also be customized form the theme panel here: http://screencast.com/t/DFZTf9ON

If possible pelase give me a link to your site, it’s hard to identify the problem form the pictures.

  • This reply was modified 11 years by Radu.
Alin [tagDiv]
tagDiv Staff

Hi,

1. Your image width must be at least 745x483 to fill the whole container. If your featured image is smaller, please note that WordPress doesn’t enlarge images and you will need to use plugin like Thumbnail Upscale to enlarge thumbnails: https://wordpress.org/plugins/thumbnail-upscale/ For upscale use a combination of plugins Thumbnail Upscale + Force Regenerate.
Or you can try this custom css in Theme Panel > Custom Css:

.td_block_big_grid .td-big-grid-post-0 .entry-thumb {
width: 100%;
height: 100%
}
.td_block_big_grid .td-big-grid-post-0 .thumb-wrap {
height: 100%
}

2. I have checked you site and this is how it looks you articles titles on Big Slide – http://screencast.com/t/o0CeUvG0BDE2 you have changed the default background color. Please provide more details what you are trying to do.

Thanks!

SkyFist
tagDiv Member

Hi Alin, thanks for getting back to me.
I’ve tried both methods of trying to create the sidebar and neither is working for me.

I went to Template Settings > Blog and posts Template and in the sidebar dropdown box I created a Custom Sidebar,previously I had it set on defaut. The demo categories are not listed on mine because I haven’t installed the demo.

I then went to Appearance > Widgets.
I clicked on the Custom Side box I created and added widgets including Tag Cloud and Calendar. However nothing appears on the sidebars in post pages.

I then went to Appearance > Widgets clicked on Block 1 and added it to my Custom Sidebar and tried to customise it and add widgets but still it doesn’t appear on post pages.

I also tried the custom sidebar method but still nothing. Your instructions are what I had originally tried to do.

By no means am I an experienced web developer, but for the past few years I have been installing and setting up WordPress themes just by following the instructions. I’m so frustrated as I have spent many hours on this and can’t resolve it!

Please help me get the sidebar working.

Viewing 25 results - 35,576 through 35,600 (of 39,816 total)