Home User profile
tagDiv Staff
I love to get energized by social interaction! Curious and eager to improve, I enjoy traveling and learning new things.
Lucian
tagDiv Staff

Hi,

Yes, it’s in development and will be available soon.

Thanks

Lucian
tagDiv Staff

Hi,

There shouldn’t be any problem, you can try and as Christopher said you can always go back to the previous version.

Thanks

Lucian
tagDiv Staff

Hi,

Thanks for your suggestion, we’ll take a look if it’s doable. 🙂

Thanks

Lucian
tagDiv Staff

Hi,

Please give me a link to a post that has a background to see this issue.

Thanks

Lucian
tagDiv Staff

Hi,

Send a link to your site to see the issue.

Thanks

Lucian
tagDiv Staff

Hi,

Thank you for your suggestion.

Have a nice day!

Lucian
tagDiv Staff

Hi,

You can change the time tags to a div or span from your td_module.php file like this: http://screencast.com/t/Fl2Dwvtb

Thanks

Lucian
tagDiv Staff

Hi,

The settings are stored as an wordpress option td_008 in your database.

You can try to import and export your theme settings from Theme Panel http://screencast.com/t/HXBNiyBvmAh

You will have there all your settings stored http://screencast.com/t/K2OktqggB0b8
You can save the theme settings in a text file and paste them back when you want and import them.

Hope this works

Thanks

Lucian
tagDiv Staff

Hi,

Please send an e-mail at contact@tagdiv.com with your wp-admin username and password, and FTP access so we can take a look, specify the issue or send an URL to this topic also send a link to your site.

Thanks

Lucian
tagDiv Staff

Hi,

Use this custom CSS, add it in Theme Panel Custom CSS:

.archive .post {
border-bottom: 2px solid #4db2ec;
margin-bottom: 30px !important;
}

.category .post {
border-bottom: 2px solid #4db2ec;
margin-bottom: 30px !important;
}

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

Please note that this custom CSS only applys to Module 1 layout for category page and archive page, if you need to add this border for other than M1 layout, please let me know and i will provide you with the CSS for other layouts.
Also, please give me a link to see where you want to add a border.

Thanks

Lucian
tagDiv Staff

Hi,

Add this code:

$adcounter = 0;

and

$adcounter++;
    if (is_category() or is_archive()) {
        if ($adcounter == 2 or $adcounter == 4 or $adcounter == 6) {
        echo do_shortcode('[td_ad_box spot_id="custom_ad_1"]');
        }
    }

in the loop.php file, like this: http://screencast.com/t/DsXKbb9C

This will add an ad after 2 post, 4 post and 6 posts on the category page and archive page also if you want you can change this simply by removing or by adding $adcounter == variable or changing it’s value as you want. Also notice that the code for these ad goes in the Ads > Custom Ad 1 > Your Custom Ad 1 in Theme Panel.

You will also need to add this custom CSS in Theme Panel > Custom CSS:

.category .td-a-rec-id-custom_ad_1{
margin-bottom: 30px !important;
}

.archive .td-a-rec-id-custom_ad_1{
margin-bottom: 30px !important;
}

You will get this result: http://screencast.com/t/nuHrZ7zhGY

Thanks

  • This reply was modified 12 years by Lucian.
Lucian
tagDiv Staff

Hi,

Please send an e-mail at contact@tagdiv.com with your wp-admin username and password so we can take a look, please specify the issue or send an URL to this topic also send a link to your site.

Thanks

Lucian
tagDiv Staff

Hi,

Please switch to fixed layout like here: http://screencast.com/t/jDuf2gNAIOV

Thanks

Lucian
tagDiv Staff

Hi,

I think the ideal solution at the moment would be to create that content only for members and use a plugin to restrict the access to it. i would point you to

some plugins that do just that but unfortunately I din’t tested any of them and i don’t know how they run with the theme.

You can have a look at this discussion there is someone that made a research on how to achieve this, it might be helpful for you

https://forum.tagdiv.com/topic/feature-request-members-access-areas/#post-8049

Thanks

Lucian
tagDiv Staff

Hi,

1. The author page it’s dynamically generated. Please provide your site’s URL to see the issue. What you can try is to disable all plugins or one by one and see if works.

2. To modify go to td_module_blog.php file and change like this: http://screencast.com/t/np3XYomLr

Thanks

Lucian
tagDiv Staff

Hi,

We have fixed this issue in the last update, if you don’t have the last theme version(3.9.2) please update the theme. http://screencast.com/t/zSFZl1hPLh5

Thanks

Lucian
tagDiv Staff

Hi,

Also, please follow this guide, last part, “How to make responsive text/flash or image ads” https://forum.tagdiv.com/ads/
Here you have an example of an header ad:

<div class="td-visible-desktop">
<a href="#"><img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-728.jpg" /></a>
</div>

<div class="td-visible-tablet-l">
<a href="#"><img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg" /></a>
</div>

<div class="td-visible-tablet-tp">
<a href="#"><img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg" /></a>
</div>

<div class="td-visible-phone">
<a href="#"><img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-300.jpg" /></a>
</div>

Hope this helps
Thanks

Lucian
tagDiv Staff

Hi,

Please try this custom CSS, add it in Theme Panel -> Custom CSS

.td_ul_login, .td_ul_logout {
display: none;
}   

@media (max-width: 767px) {
.td-header-menu-wrap, .td_ul_login,
.td_ul_logout {
display: inline !important;
text-align: right;
}

.td-header-menu-wrap .span9 {
display: none !important;
}

.td-header-menu-wrap .span3 {
background-color: #4b4b4b;
height: 26px;
}

.td_ul_login,
.td_ul_logout {
margin: 0 8px 0 0 !important;
}
}

Hope this works
Thanks

Lucian
tagDiv Staff

Hi,

What issues do you have with the mobile version? About turning off the mobile site, what do you mean? What will load on mobiles? I think you can make something from you hosting server side if have a feature like redirect to another link when access from mobile.

Thanks!

Lucian
tagDiv Staff

Hi

You can try to add a div element with your code inside and on that div add a class like td-myad and hide it on mobile via CSS like this:

@media (max-width: 767px) {
.td-myad {
display: none;
}
} 

Hope this helps!
Thanks

  • This reply was modified 12 years by Lucian.
Lucian
tagDiv Staff

Replied here

Thanks

Lucian
tagDiv Staff

Replied here

Thanks

  • This reply was modified 12 years by Lucian.
Lucian
tagDiv Staff

Hi,

Please try this. Make a backup of your .htaccess file then delete it from the server. After deleting .htaccess file, firstly visit your website URL then try to access the link with the error and see if works.

Hope it works!
Thanks

  • This reply was modified 12 years by Lucian.
Lucian
tagDiv Staff

Hi,

Have you managed this issue?
I believe you have chosen to display them there from Appearance -> Widgets, if so you just have to got there and remove them from the Top Right (Social) widgetized area.

Thanks

Lucian
tagDiv Staff

Hi,

You can change it manually from header.php file like this: http://screencast.com/t/mKvnznEPb

Thanks

Viewing 25 posts - 6,351 through 6,375 (of 6,600 total)