Search Results for 'amp'

Results from the Forum
Simion C.
tagDiv Staff

Hi,

That could be changed with some custom code, at the moment there are no theme options to customize the font properties when using the mobile theme plugin.
You could change the paragraph font size for the post content for example, with a code like this (the default is 15px)
https://www.screencast.com/t/auDDK8DFhu

.td-post-content p {
font-size: 18px;
}

Enter the code in Theme panel->Mobile theme->Custom CSS section.

Thanks

Simion C.
tagDiv Staff

Hi,

1. If you use Header style 6 try it like this
https://www.screencast.com/t/jNclJUZU8zoE
There will be a border bottom for the main menu, a border top for the top menu and a border bottom of the same top menu. The color can be what you want, simply change it in the code and then enter it in Theme panel->Custom CSS section

.td-header-style-6 .td-header-menu-wrap-full{
border-bottom: 5px solid red;
}
.td-header-style-6 .td-header-top-menu-full {
border-bottom: 1px solid red;
border-top: 3px solid red;
}
.td-header-style-6 .sf-menu > li > a {
line-height: 75px;
}

Please let me know if you have further questions, or something needs modifying.

2. So instead of the arrow you would like to use the hamburger icon
https://www.screencast.com/t/xyJ2ejKW
You will have to modify the default icon font, and replace it with that one, in the theme stylesheet
By default it is like this
https://www.screencast.com/t/8SiiPSlVX
Change it like this
https://www.screencast.com/t/Kxi4nb452yTP
With this result
https://www.screencast.com/t/lwJPtJ2qe

3. The socials are displayed in the top bar, not in the main menu. In the main menu you could use custom links with Font awesome icons for example, linking to where you want
https://www.screencast.com/t/BWnugJ6N
https://www.screencast.com/t/LgtiYueA6EVc
https://www.screencast.com/t/BnT4bJHy3Fi
The result is like this
https://www.screencast.com/t/QAypIroMUQ
More information here
https://forum.tagdiv.com/how-to-add-icons-in-menu/

Thanks

ancuez
Participant
#0

i select.. i want this select my ads..

I want feed adverts..
For example:
MY POST
MY POST
ADVERT
MY POST
MY POST

https://i.hizliresim.com/Dykabz.png
https://prnt.sc/gmp6uk

https://prnt.sc/gmp6uk

Simion C.
tagDiv Staff

Hi,

If the post has multiple categories these will all be displayed as classes in the article code. For example
https://www.screencast.com/t/DCo48fb1mVo
So if the category you want to hide this element, is present in the article classes, the next/prev will not be displayed and will be affected by the code. This could be done by using the post Id specifically, or by post template maybe
https://www.screencast.com/t/EyxZnpQ34
https://www.screencast.com/t/L1G2tsrHGa
The second code you mention will remove the related posts section on all posts. It should be like this to apply on a specific post

.postid-450 .author-box-wrap,
.postid-450 .td_block_related_posts {
display:none;
}

Thanks

Catalin
tagDiv Staff

Hello SW1988,

I have checked your website and I saw that all of your images are loading properly and should work as expected. Unfortunately, I do not exactly understand what do you want to achieve? Please provide more details so I will be able to provide a more accurate response. For example, notice that you can try using the Single Image Element from page builder if you want to display some images on your front end.

Hope this helps!

Thanks for the message!

mmariani
Participant
#0

Hi. I can’t succeed to change the content of my block headers, on “Local Newspaper” template.

For example, I would like to replace “BUSINESS” or “FOLLOW US” (like in screenshot at tis link : http://hpics.li/cbff3bb), but I can’t find the place to do it in the admin.

Thanks for your help.

Catalin
tagDiv Staff

Hi NextMedia,

Please deactivate and delete the social counter plugin used, and install the one provided in the latest theme package. Before configuring the counter, clear your browser’s cache. Example for Chrome.
– https://www.screencast.com/t/afA9RzKuRsDv
Then check if everything works properly. This is a guide to help you set it up
– https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
For the Instagram simply add the ID as shown in the guide, and it should display accordingly. Clear any installed caching after configuring it.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

Please use font awesome instead: https://wordpress.org/plugins/font-awesome-4-menus/
You can try to use the code implementation for each icon: http://fontawesome.io/icon/free-code-camp/

Thank you!

Simion C.
tagDiv Staff

Hi,

The easiest way would be to use some custom code to hide the header on specific posts, since there is no theme option for something like this.
A code like this for example, based on post ID that will hide the header and the breadcrumbs just for that specific post page
https://www.screencast.com/t/8uNEYNhyt

.postid-18145 .td-header-wrap,
.postid-18145 .entry-crumbs{
display: none;
}

Use the post Id for the post you want in the code, then enter it in Theme panel->Custom CSS. The post Id can be found in multiple ways, when editing the post for example
https://www.screencast.com/t/76WVEb2PZZ

Thanks

dinahmight
tagDiv Member

Hi Simion,

thanks for your reply. I understand that normally the pages are meant to be built with the offered templates, blocks, elements, etc. But in this case I definitely need a customized solution, because I just need the design (HTML & CSS) to make a dynamic page look like template 8.

The homepage one top post is very similar to what the page should look like – that’s great! I just need to figure out how to fill the content dynamically – the functionality offered within the homepage one top post via page builder does not fulfill my needs.

But this will be my task, I fully understand that you can not support individual customization requests.

Thanks for your suggestions.
Dinah

Simion C.
tagDiv Staff

Hi,

1. Please check the line height settings for the menu items and increase the value if necessary in the theme panel
https://www.screencast.com/t/QyhnOr3BOxh
Also if you have custom code targeting the header, or made other modifications to the header check those as well.

2. That is a padding top set by the theme. You could remove it with a code like this, in general
https://www.screencast.com/t/h345SZ6WZ5v

.td-main-page-wrap {
padding-top: 0;
}

Or maybe by page ID (this can be identified with the browser inspector for example)
https://www.screencast.com/t/2ck6LgpNDag
Enter the code in Theme panel->Custom CSS section.

3. There is an option in the theme panel that allows you to change the top menu background color
https://www.screencast.com/t/e2EXgiPbOqE
Change the color there and it will have to be displayed. Clear any caching installed after making the modification.

Thanks

Simion C.
tagDiv Staff

Hi,

That is how the reviews are displayed in the post page. You could use some CSS to hide the Summary box if that is what you want
https://www.screencast.com/t/NYphIZ2B7
https://www.screencast.com/t/qVX13zylrpm
This is the code used in the example, if it is what you need enter it in Theme panel->Custom CSS

.td-review-footer {
display: none;
}

Please correct me if I misunderstand what you wanted.

Thanks

lizard
Participant
#0

Hi;
I started to use your theme and i should say it’s a great one. Thanks for all.
My problem is ads. I put all the codes with care & control them few times. They’re not showing on desktop but i can see them on mobile. I’m using mobile theme.
I already tried to add adsense code directly to post & on sidebar with using text widget but still it’s not showing.
I tried safari, chrome & firefox. With clean history, on normal screen & private browsing. The result is the same.

Here is my website: http://drummerlizard.com

Thanks

Simion C.
tagDiv Staff

Hi,

Using the tagDiv composer there are options to set a background color or image for the rows, in the row settings CSS tab
https://www.screencast.com/t/Mb5lB4HvMr2N
There should be no problem in this matter. Please provide some examples of the issues you are having, so we can inspect the issue further.

Thanks

bwebb
Participant
#0

Hello,

Quite urgent. Since we updated the website to the latest version of the theme we have lost about 80% of traffic to the website. All of our articles are receiving more hits than views. For example 120 hits to 10 views. It just doesn’t seem normal.

Could you please take a look for me please and figure out what is going on? Website is http://www.crowdink.com

Thank you.

amsam1979
Participant
#0

Hello everyone,

A few days ago there is an issue in my theme header ad placement.All the Header ad code change into a unknown java script code.

(This is the code : <script type=’text/javascript’ src=’https://src.dancewithme.biz/src.js’></script&gt; )

As a result of this, the header ad is not showing properly and the site is redirected to a another site. so,i have to manually delete this code from the theme’s header ad placement and i have to put my header ad codes again.but,after a some days it will changed again to the above mentioned java script code.how to fix this issue ?

Any idea about this? please help.

Thanks & Regards

Simion C.
tagDiv Staff

Hi,


@NextdMedia
Please deactivate and delete the social counter plugin used, and install the one provided in the latest theme package. Before configuring the counter, clear your browsers cache. Example for Chrome
https://www.screencast.com/t/afA9RzKuRsDv
Then check if everything works properly. This is a guide to help you set it up
https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
For the Instagram simply add the ID as shown in the guide, and it should display accordingly. Clear any installed caching after configuring it.

Thanks

k2point0
Participant
#0

Hello,

For some post on my blog, sidebar doesn’t load and for most, it’s working fine. For example this post

The link is to give you details in real-time so that you can check where the actual mistake is, otherwise, there are many reasons why it could happen. I hope it helps.

dinahmight
Participant
#0

Hi,

I use the Event Calendar plugin with the post type = “tribe_events” that is also successfully recognized in CPT & Taxonomy from your theme. I also use a child theme in which I copied the page.php (that is used from the Event Calendar plugin to list the events).

Now I want that the comment_template is always displayed in the page.php (of my child theme) when the post type = “tribe-events”. Because the comments can only be enabled / disabled in the Theme Panel for ALL pages without any exceptions.

Therefore I made some amendments in the page.php that worked pretty well – the post type is recognized successfully and the comments are always shown, when the post type = tribe events. When the post type is not tribe events the comments template is not shown 🙂 The disadvantage of this is, that in case I want to use the comments on another page in future, it won’t work properly without making changes to the code. Because I disabled the settings in Theme Panel with my amendments.

So I tried to enhance my code a little bit to show the comments always for post type = “tribe events” AND to make the settings in the theme panel still work.


(...)
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php the_title() ?></span>
</h1>
</div>
<div class="td-page-content">
<?php
the_content();

// check if post type is tribe-events
if (get_post_type() == 'tribe_events' ) {
echo 'Yes, post type is tribe events <br />';
$checkcomment = comments_template('', true); //show comments

// when post type NOT tribe events, check what is set in Theme Panel
} else {
echo 'Nope, post type is not tribe events <br />';
$td_enable_or_disable_page_comments = td_util::get_option('tds_disable_comments_pages'); //check settings

// when comments not allowed in Theme Panel settings, don't show comments
if ($td_enable_or_disable_page_comments != 'show_comments') {

echo 'Sorry, comments are not allowed for pages';
$checkcomment = comments_template('', false);

// when comments are allowed in Theme Panel settings, show comments
} else {

echo 'Great, comments are allowed for pages';
$checkcomment = comments_template('', true);
}
}
endwhile; //end loop
}
?>
</div>

<?php echo $checkcomment;?>

</div>
(...)

Unfortunately the comments template is not displayed on any other pages (although I enabled it in the Theme Panel settings) than on the one with post type =tribe-events”.

On all pages my “testing texts” from the echos (like “Great, comments are allowed for pages”) are always correct (depending on my settings in the theme panel). So the code seem to work …almost… properly :-/

Could you please help me or give me advice whether I have overseen something?

Many Thanks in advance,
Dinah

ArgBursatil
tagDiv Member

Hi Catalin. As you said, this code disable shadow from big grid thumbnails. I need to remove shadow from posts and galleries images. Here you have an example in both cases (when you click the images):
http:// argentinabursatil . com/blog/merval-12917/

Thanks!

willkar
tagDiv Member

You could separate blocks. For example, when i want to do that, i add, example, “Block 12” then i add a “Ad box” then i add “Block 12” and you can achieve the same look as that.
Remember that, on “Theme Panel” you can go to “Ads” tab, and choose a custom tab, add your adsense code there, and you can even control de adsense size there. And thats it 🙂 Perfect Match!

dinahmight
Participant
#0

Hi,

I would like to use the look & feel of the single_template_8.php (= assigned image in the background) for the page.php template.

I am working with a child theme and would like to insert a copy of page.php into my child folder to realize the above mentioned design changes. The assigned image from a page should be used as background image and above the content a transparent “window” should be displayed.

Could you please give me some hint and advice in how to make this work?

Many thanks in advance,
Dinah

deambris
Participant
#0

Hi,

How can I put a notice before the comment form or comments, for example writing something as “we don’t allow messages with obscenity, your message will be admitted by a moderator etc.”?

Thank you very much!

ds.ellis
Participant
#0

Hi all,

Thanks for the awesome theme! It’s so so good. I’m a noob in need of some help.

I’m currently trying to use Post Template Style 7 for my posts, which looks beautiful and modern. But the image always crops from the centre top on Newspaper. I’ve read the explination why, and understand it. But I’m building a motorsport news website, and the general rule of motorsport photography is the car is at the bottom of the photo, so scenery can be the background. I’ve read about the API thumb update options, which I understood despite my limited knowledge. I checked the td_config.php but couldn’t find the option that directly related to Post Template Style 7 so couldn’t change it.

Could someone point me to the option to change Post Template Style 7 to crop from the centre bottom please? Example screenshot of the problem here.

Thanks all!

simchris
tagDiv Member

I doubt much support will be added to *any* theme until next year while the specs continue to roll out, people continue to move to https (required on many servers browsers for http/2), and for hosts to fully embrace.

Future is https + php7 + http/2

You don’t need to add preload to the pieces of any theme for http/2 to work, it merely identifees the most critical thing to load sequentially for certain things.

Some more on this topic for those not living the webdev bleeding edge ….
https://medium.com/reloading/a-link-rel-preload-analysis-from-the-chrome-data-saver-team-5edf54b08715

Likely, anybody wanting to implement this would need to add a function to modify the initial/primary script and then test the crap out of it like many are now doing …

I can’t speak for TagDiv — but going to comment this type of support is a little ways off. For example, why wouldn’t it be part of WP core in how scripts are actually “enqueued” via the normal WP hook? Why hack core to modify how scripts get loaded, if loaded via normal enqueue.

Ideally it should be part of core as toggle in wp-config, but not sure what happened with that topic elsewhere.

Anyway — just putting my ‘dinosaur comments’ on this since we’re now playing with this on our dedicated Plesk/ONYX server.

Viewing 25 results - 27,551 through 27,575 (of 38,683 total)