Search Results for 'composer'

Results from the Forum
JBH
tagDiv Member

@Steven

I’ve installed the speed booster plugin and noticed a huge speed improvement. Like you advised, i add the 4 .js files in the exceptions.

To not break any slide are the menu on mobile please add these files in the
Exceptions (files to ignore and load in render-blocking way) box to the bottom

jquery.min.js
external.min.js
site.min.js
js_composer_front.js

The problem is that there are some problems:

1. The header menu is not sticky and the pull down columns are to small
2. There are no header image visible at theme 4 (other templates are ok)

Did i miss a file to exclude?

Thanks in advance!

JB

webjump
Participant
#0

Hi there,

I have installed a carousel slider by Themepunch (they also make Slider Revolution) on my homepage.

http://www.betasite05.co.uk/

I would like to remove the top padding so it looks better. I placed the following css in the Visual Composer CSS editor (just for that page), however it did not work.
Hope you can help!!

#page {
.td-grid-wrap {
padding: 0px 0 0; !important;
}

Lucian
tagDiv Staff

Hi,

Please make sure you use the 1170px layout, the big slider doesn’t work at the moment with the 980px layout: http://screencast.com/t/cGae18VuIrB
Also make sure you use the 4.2.3 version of Visual Composer plugin not a newer version, this may cause issue like that also, you will find the right version within themes files (..\Newspaper-tf\plugins)

Hope this helps!
Thanks

techedge1
tagDiv Member

Thanks for the help! I also am still having issues with any of the button functions in the visual composer. Are there fixes available or should I upgrade the VC to resolve the problems.

  • This reply was modified 11 years by techedge1.
caronoodles
Participant
#0

Hi,
first of all congratulations for your work! 🙂

I have a problem.
I created a page with full layout and in visual composer I used template “homepage”.

When I go to insert the widget SOCIAL ICONS, it is not displayed. The SOCIAL COUNTER instead it shows. What can be the problem?

I’m attaching here the image:
http://www.saluteorale.it/problem/lamiasaluteorale.jpg
Also the button that brings me back at the beginning of the page does not appear.

here your original image:
http://www.saluteorale.it/problem/newspaper.jpg

can you tell me a solution?
thank you very much for your attention!
Caro

TheMediumUTM
tagDiv Member

P.S. Oh, good point, I forgot that if you create a page template it can survive theme updates because it won’t be overwritten 🙂

Rodney828
tagDiv Member

I am using visual composer to build my home page. I want a different looks. I want to use a few different blocks with the classic look on the same page. Is that possible?

  • This reply was modified 11 years by Rodney828.
Lucian
tagDiv Staff

Hi,

Please give us wp-access so we can check, send an email at contact@tagdiv.com with your wp-admin username and password, please also include a link to this topic or specify this issues details.

Thanks

Lucian
tagDiv Staff

Hi,

Sorry for the delay. We are working on this and we will try to publish a tutorial for this in the near future.

Thanks for the message

  • This reply was modified 11 years by Lucian.
esmus
tagDiv Member

@Lucian
There wasn’t h1 tag on blog page at all, but thanks to Emil, I have added h1 and h2 tags to my homepage by editing the index.php file. I would like to build homepage with visual composer, and tried a few times. However, I could not build a beautiful homepage. That’s why I use blog template.

Lucian
tagDiv Staff

Hi,

Just add the file along the other page templates like this: http://screencast.com/t/fOE5Xb7e
You will then find it here http://screencast.com/t/iwhSldMZ5

Thanks

LindenMobile
tagDiv Member

Hi,

I deactivated all other plugins but that didn’t work.
I also tried to delete it and then install it as you said but it still doesn’t work…

anastasios
tagDiv Member

Since I wuld be interested in that as well, I am also thinking many other people would like to know this answer, could you please publish the tutorial here so we can all see it? Thank you so much!

simchris
tagDiv Member

They are closed weekends.

Bryson T
tagDiv Member

Same here. Email sent a few days ago and only received the auto-response so far.

mehedi
tagDiv Member

I have send you the mail two days ago and haven’t received any reply yet. Please check

SheikhOvais
tagDiv Member

Hi Marius,

This will be awesome if it works 🙂

But how do I “Unzip this file in theme root”? I didn’t get that?

rjohansen
tagDiv Member

Great! I was looking for something like this myself!

mehedi
tagDiv Member

I’ve sent an e-mail. Please check

Marius
tagDiv Staff

Hello,
Here is an empty template that you can try it if works, is only the Visual Composer on that page without menu, footer.

http://demo.tagdiv.com/tf/page-full-blank.zip
Unzip this file in theme root and create a page using this template: http://screencast.com/t/lQwqypkX

Thanks!

Marius
tagDiv Staff

Hello,

For this page http://www.vitamail.no/polarkrill/ i see that you hide the page title via css with display: none, is not necessary, use the Homepage - blank template for that page to be without title.

Also to add an image you can try with this Single image widget from Visual composer http://screencast.com/t/eq5xj9ta4d

On the post that gap is because you have there the post title(white) witch is broken due some custom CSS, please remove the custom CSS, default everything should work.

If you can’t manage all the stuff you can give us access to your WP and we will take a look.
Thanks for the message!

SheikhOvais
tagDiv Member

Can the tagdiv support team add a landing page template?

SheikhOvais
tagDiv Member

The child theme option seems promising, but it’s so complicated and I’ve never touched a thing like that before. :/

Why don’t don’t newspaper have such a template? It should be added.

I desperately need to add a clear landing page to my site in the next couple of days. :/

TheMediumUTM
tagDiv Member

Well, the sidebar is easy to remove under “page template settings” on the editing screen.

As for the header and footer, there are a few ways you could do this. Here are two:

1. You could edit the respective template files in a child theme to check the page id and only include the relevant elements if it’s not your thank you page.

For example, once you set up and activate a child theme, you could edit the header file you’ve selected in your theme panel. Find this in your-child-theme/parts/header… .php, and add this line before the first div:


<?php if (!is_page('4994')) { ?>

and this at the very end:


<?php } ?>

Your landing page id is the number that comes up when you hover over the link to edit the page: http://www.screencast.com/t/ANsTxW7C

Then you would do the same to other files you want to remove (menu-top.php, footer.php), save, upload, and clear cache.

2. If you’re not comfortable with child themes or php, you could instead do it quickly through CSS:


.page-id-4994 .td-header-bg {
  display: none !important;
  }

And add any container classes that you want to hide, putting them where .td-header-bg is, e.g. .td-header-menu-wrap. You can find these using inspect element.

The CSS solution isn’t great because all the content will still be downloaded by the client’s browser, but it’s very easy.

3. Create a custom page template. WordPress checks for page templates in a hierarchy of importance, including the slug and the ID, so if you your page’s slug is /email-landing and you have a template named page-email-landing.php, or page-4994.php, and so on, WordPress will use that rather than the default one. Then you could edit that one to suit your needs. You could copy page.php from the parent theme’s folder as a starting point.

From what I’ve read, this is probably the most natural solution, but it would still need a child theme to survive theme updates, and to be honest I haven’t looked at enough custom template building yet to know what to advise you. For example, you can’t just remove the call to get_header() from page.php or you’ll lose a lot more than the logo div, etc.

Those are my two cents, coming from a relatively new learner of this sort of thing. If anyone has a better solution, feel free to mention it so I can learn too. 🙂

SheikhOvais
Participant
#0

Hi there,

I was wondering if I can add a landing page for my email list using visual composer.
I want to isolate the page, with no header, sidebar, and footer, just full width content.

Something like this? http://www.acneeinstein.com/newsletter-confirm/

Thanks!

Viewing 25 results - 52,251 through 52,275 (of 52,922 total)