Buna
CSS-ul pentru aliniere imaginilor este corect si ar trebuii sa mearga: http://screencast.com/t/ncQKe1c3Oft – http://screencast.com/t/NvJxeJkAdx
In cea ce priveste imaginile eu pot sa iti dau un css simplu care le schimba modul de afisare in pagina insa acesta va afecta toate imaginile care le vei aduga ulterior in orice post. Codual ar genera avest rezultat: http://screencast.com/t/EGGEuxLKL
.td-post-content img{
display: inline-block;
margin-left: 10px
}
Dupa cum spuneam toate imaginile inserate in continutul postului vor fi afectate de acest cod si nu pot anticipa cum vor fi afectate pe diferite post template-uri sau pe diferite dispozitive mobile.
Cea mai sigura metoda e cea prezentata in respunsul anterior, desii e un pic mai sofisticata.
Faci un container specific pentru imaginile care vrei sa le afisezi una langa alta, iar apoi foilosesti clasa in css pentru a aplica stilul dorit. In acest fel vei targeta doar imaginile din interiorul acelui container, fara riscul de a afecta alte imagini in mod inutil.
Majoritatea elementelor din continutul postului au disply block, exceptant situatille cand au float. Aceasta implementare se poate schimba relativ usor doar ca trebuie sa fi atent la ce selctori folosesti. Cu cat selectorul e mai precis cu atat riscurile sunt mai mici. De examplu daca vrei sa schimbi disply-ul paragrafelor poti face astfel:
p{
display: inline block;
}
Aceastra nu e cea mai buna abordare fiinca vei prinde o gama foarte mare the paragrafe care sar putea sa nu fie afisate bine folosind acest disply. In schimb poti face astfel:
.post-id-123 .td-post-content p{
display: inline-block;
}
Acest css targeteaza dor p-ul din continutul postului cu id-ul 123. Acesta e doar un exemplu de baza, dar poate fii folosit pentru a face css-ul cat mai specific.
Un alt aspect de care trebuie sa tii cont e complexitatea temei. Css-ul e imens si multe reguli se pot rescrie in functie de situatie. Trebuie sa fii atent ce selctori folosesti, daca sunt suficienti de puternici astfel incat sa rescrie codul initial si mai ales daca acei selctori nu afecteaza si elemnte nedorite.
Multumesc!
Hi
Your page is not set to display a sidebar. To have a sidebar using contact form on a page you can try this configuration in Visual Composer: http://screencast.com/t/jDjMckhYmz The result can be seen here: http://screencast.com/t/20c6eAvK
Here i used a 2/3 reow for the contact form generated by the plugin and a 1/3 row for the sidebar added using a widgetized sidebar block.
Here is the page shortcode from Vsual Composer: http://screencast.com/t/BmnE550Yefu – http://pastebin.com/H9WFM6MH You can use it as example, just edit the text block and replace the current shortcode with one generated by your plugin.
Hope this help.
Thanks!
Hi
That delay appear because the css from theme panel loads after the main css of the theme, loaded from style.css file. To avoid that delay try to insert the css directly in style.css.
Thanks!
Hi
The background image is not added by the theme as the backstretch class is missing from page source. Try to deactivate deactivate all plugins except Visual Composer, clear all caches and test again.
Let us know how it goes and if you still can’t manage to solve this issue please send us an email at contact@tagdiv.com with your login credentials and we will inspect this issue as soon as possible, also include a link to this topic.
Thanks!
Hi @abccom
We recommend WP Super Cache as a cache plugin and here you can check our documentation regarding its setup: https://forum.tagdiv.com/cache-plugin-install-and-configure/
Thanks!
Hi
That delay appear because the css from theme panel loads after the main css of the theme, loaded from style.css file. To avoid that delay try to insert the css directly in style.css: http://screencast.com/t/kOQTD07V
Thanks!
Hi
The menu it’s hidden because of an external css applied on its container. This css seams to be inherited in menu’s html structure. If you made any changes in header file try to revert them then test again. Also try o deactivate all plugins except Visual Composer, clear all caches and test again.
If you still manage to solve this issue use this css in theme panel > custom code > custom css: http://screencast.com/t/EVxtobc4jPtR
.td-header-main-menu{
visibility: visible!important;
}
Let me know how it goes.
Thanks!
Hi
There is no easy way to accomplish this. Basically you will need a script which verify if the user has been registered on the site between the current time and x-days ago Here iI found a possible example how to get the user registration time: http://wordpress.stackexchange.com/questions/77876/display-user-registration-date. In your case the condition should be more specific if you want to loop only trough subscribers or contributors. If this condition is true then echo out a specific field from the database which contains the desired information.
Please consider that this is a complex task which require advanced coding skills, also many customization and tests. If you can’t do this by yourself my advice is to look for someone which can help you with this or hire a freelancer to do it for you as we can’t offer any type of custom work at the moment.
Thanks!
Buna
1. Tema nu are nici un widget care sa alinieze imaginile una langa alta asadar vei avea nevoie de o implementare custom. Cel mai siplu mod ar fii sa adugi imaginile in interiorul unui container astfel incat sa le poti targeta cat mai usor cu css. Un exemplu de baza ar fii acesta: http://screencast.com/t/bCCByWbcX – http://screencast.com/t/yrqmgQmug
O alta optiune ar fii utilizarea unui media grid din Visual Composer: http://screencast.com/t/BkT3swfOYCq0 – http://screencast.com/t/eDi5Dj3XSy
Revenind la codul tau ar fi de facut cateva observatii:
– daca veri sa modifici layout-ul din imaginilor din post editor, codul aferent trebuie adaugat in editor-style.css: http://screencast.com/t/kQOUXLoIRqFE Css-u; care controleaza layout-ul editorului se afla in acel fisier.
– cnd targetezi imaginila va trebuii sa te legi te o clasa unica pentru pagina, sau pentru containerul in care se afla ele. Utilizant .td-post-content p vei targeta toate imaginile din continutul postului si e posibil sa apara efecte nedorite.
– codul css care se refera la imaginile de pe frond-end poate fi adaugat in style.css: http://screencast.com/t/JMStEQBvL
2. Poti folosii acest css in editor-style.css:
.mce-content-body img{
display: inline-block;
}
3.Doar din imaginile tale nu pot sa imi dau seama care e selectorul gresit. Folosind ins o clasa custom pentru iomaginile din continutul postului, ca in exemplul de mai sus, proprietayea de float se va aplica doar pentru acel container si nu ar trebuii sa mai afecteze layout-ul celorlante imagini.
4 Poti folosi acest css: http://screencast.com/t/svShfuUDd1W
.more-link-wrap{
margin-left: 0;
}
5 POti seta modulul 15 pentru fiecare categorie din theme panel > categories: http://screencast.com/t/hDvhNuwKy2
6. Poti folosi acest css:
.td-post-template-3 header .entry-title {
font-size: 35px;
}
8. Ca sa muti data si views-urile deasupra tag-urilor trebuie sa modifici single_template_3.php, taie (cut) aceste linii: http://screencast.com/t/uvXlZJUl03Xu si insereazale in loop-siongle-3.php, pentru post template 3, si sa muti liniile indcate ca in aceasta imagine: http://screencast.com/t/XggROxpEL
Te rugam sa iei in considerare ca orice modificare adusa in structura posturilui sau in modul de afisare a continutului implica customizari suplimentare. Noi oferim suport pentru tot ce inseamna modul de utilizare si configurarea corecta a temei. Orice customizare care implica modificarea actualei implementatri, pentru orice element implica schimbarea codului actual sau ajustarea lui pentru a abtione rezultatul dorit.
Din pacaqte timpul nu ne permite sa oferim servicii de customizare, fiind un numar mic de membrii ne confruntam cu un volum mare de munca. Pentru orice alte customizari va trebuii fie sa angajezi un developer care sa te ajute in realizarea lor.
Multumim pentru intelegere.
Hi
This usually happens because of lazy load animation which’s script conflict with one of your installed plugins. Try to deactivate the animation from theme panel > template settings: http://screencast.com/t/YfRwIXkEWam7 clear all caches and test again. Also you can try to deactivate all plugins except Visual Composer and check if the problem is still there.
Let me know how it goes.
Thanks!
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/2FT2S0OZ2WrL
.td-header-style-8 .td-header-sp-logo{
width: auto;
float: left;
}
Let me know how it goes.
Thanks!
Hi
This could be a cache issue as the theme is tested and the option which remove the background image works fine. Try to deactivate all plugins except Visual Composer, clear all caches then test the site again.
If you still can manage to solve this issue please provide your site url so I can inspect it closer.
Thanks!
Hi
From this screen i can see that your images are smaller then the thumbs where must be displayed: http://screencast.com/t/mWAHIELmf5CC WordPress won’t enlarge images, only crops them so make sure that the image it’ at least by thumb size.
If this is not what you mean please provide more details about you issue and also your site url.
Thanks!
Hi
This could be a cache issue so try to clear all caches and test the site again.
If you still can’t manage to solve this issue pleas provide your site url so I can inspect it closer.
Thanks!
Hi
To avoid the redirect to homepage when user logout replace the indicated line with this one: http://screencast.com/t/UeoVzzDVzNeE
<a href="' . wp_logout_url(get_permalink()) . '">' . __td("Logout") . '</a>
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
1 To display a different header ad for categories pages please check this topic: https://forum.tagdiv.com/topic/different-header-ads-according-to-category/
2 To ad a title for ads you can use this method: https://forum.tagdiv.com/topic/inline-ad-titles/ Note that depending by ad type it may require others customizations.
3 You can use the do_shortcode function in the file which generate each page. For example a page which use pagebuilder + latest as post template require this file to be modified: http://screencast.com/t/Nc8kqxbkFZIs For the category page you can add the code here: http://screencast.com/t/vNFnf6KZ9m3 – http://screencast.com/t/TkfBOExjw The same line of code can be used in tag,php, search.php etc.
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]')?>
Please note that all this customization require custom work and for the moment we can’t offer any custom services. The above solutions contains code which can be adapted such that to obtain the desired result but there are many situations and conditions which must be implemented in order to have all your requests achieved.
If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hello,
Please make sure you have the latest version of the theme as the google structure data errors were fixed. You can follow this guide to update your theme: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/
Thanks!
Hi @supporter15
If you still ave this issue please provide your site url so I can take a closer look.
Thanks!
Hi
Please note that our theme wasn’t designed to work with full-width layout. Unfortunately, there is not a simple task to change the width of the site. Our theme layout is set to 1021px no matter if you have a background color or not.
If this is not what you mean please provide more details so I can get back to you with a more accurate answer.
Thanks!
Hi
The theme don’t have an option to change the font for the text displayed in smart lists but we will consider this for future updates. Now you can use this css in theme panel > custom code > custom css: http://screencast.com/t/jOy8VJ1Nznrr
.td-sml2-description p {
font-size: 20px!important;
}
Thanks!
Hi
Please provide your site url so I can take a closer look at this issue.
Thanks!
Hi
The code that i provided it’s tested and works fine, so please make sure you added it properly, like here for example: http://screencast.com/t/yJbELHQRI7o I just replaced the page-id with the numeric id for one of my pages.
I can’t offer any further assistance regarding the code implementation but following the above instruction you should be able to implement it. Also I am not sure at what line 36 are you referring so please provie a screen pointing to the required file.
Please note that we’re not available for custom services at the moment so if you need a different implementation and you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
Thanks!
Hi
You need to name your images with exact same names as the ones already present in the indicated folder like here: http://screencast.com/t/2tcUoDss8kE Also you have to make the images at the exact same sizes in order to fit well on blocks and modules.
Thanks!
Hi
Sorry for any inconveniences but I am not aware how the plugins that you’re using generate the custom post types and especially how they are named.
In order to have the custom post type displayed in a block you have to insert the exact name which was given by plugin’s author. That name can be find by inspecting the post type source: http://screencast.com/t/PWiPXVPhL
By adding the post type name in this field: http://screencast.com/t/1EcoXJlqyct the post included in that post type will be displayed in block on any page: http://screencast.com/t/sBe0G1iB
This was just a basic example. I used a basic custom post type which didn’t required any customizations in order to be displayed in theme’s blocks. However depending by post type implementation you may need additional customizations such that your post types to be displayed fine by the theme in its blocks.
Unfortunately time does not allow us to provide plugin implementation support and if are required these customizations falls beyond the support can offer you. If you really want to use this plugins and you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to help you with implementation. You can hire one from http://studio.envato.com/
Thank you for your understanding.