Search Results for 'composer'

Results from the Forum
Lucian
tagDiv Staff

Hi,

Should work, please also make sure you have installed the VC plugin from plugins folder within the files that came with the theme files, like this: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
Are you using child theme, make sure you try this using the main theme also make sure you have updated the theme right and you have uploaded all files.
You can also try to make a backup of your current installation and re-upload theme files via FTP.

Thanks

Lucian
tagDiv Staff

Hi,


@aundrey

Please make sure you follow this guide and add the logo like this: https://forum.tagdiv.com/header/
Regarding the Visual Composer plugin if it’s active and you are seeing it in page editing panel like this: http://screencast.com/t/F34n2RTJ
If you don’t have it like in the screenshot you will have to make sure you install it right, for this please use this guide and install the plugin from plugins folder that came with the theme files: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
Please let me know what you find and also please send your site’s URL.

Thanks

reenamn
tagDiv Member

Thanks for the advice. I copied the lines for the button styling from the js_composer.css file into another css file and then imported that new btn_styling.css file into the child theme. Works great.

This is a quick fix for anyone else with the same problem.

davistar
tagDiv Member

Hello Lucian,

I’ve tried this but it didn’t help.

Kind regards

sgaddo
tagDiv Member

Hmmmmm…so, to avoid unexpected behaviors, instead of importing the whole js_composer.css file, I could just extract all the classes that I need (such as the buttons and the “call to action” button) and style them as I like (which sounds like a normal css override =) ).

Thanks to you Lucian, you all are very kind.

mrsky28
tagDiv Member

Thanks lucian!

aundrey
tagDiv Member

And another thing visual composer is missing. can’t find it in my wp dashboard at all. I am able to see it listed on settings page but the plugin is not there. although in the plug in menu it’s listed as activated.

Please help.

TheMediumUTM
tagDiv Member

Heya,

First of all, I’m far from the most brilliant guy on tagDiv. If I were, we wouldn’t have spent have a dozen posts correcting my tiny mistakes 😉 I’ll give that title to Chris to avoid favouritism among the actual staff…

Your ideal setup definitely requires some custom work that I don’t have time to provide at the moment. I would go to http://studio.envato.com, as tagDiv recommends — or you could do some learning, just like I did, and do it yourself 😀 But I will make a few comments:

Having content in these tabs that differs from post to post means you’ll either need to make extensive use of custom fields, or you could use Visual Composer settings to build the post itself. The question is what are you using the regular post content for? A comment on the phone, for example?

The first option would mean that you’d insert code similar to what I’ve been giving you, and have it appear on every template, using custom fields to determine the content. For example, as you probably know, ACF has a WYSIWYG editor field that you could use for your review. The buy now would not be as easy to automate through such a field, in my opinion (but you may already have a solution and just be looking for how to use tabs for it?).

The second option is that you’d construct these posts in the editor itself using Visual Composer, and then perhaps use custom shortcodes to display the content of your fields.

Or a real developer might suggest some much more sensible solution. :p

But I will give you one last thing, namely a basic tweak of my above code just for your “Features” tab.

The idea is the same. You’re opening up a vc_tabs, you’re opening up a tab, and then you’re looping through features-related fields. It could look like this, with lots of extra comments and line breaks to make it clear for you:

// Update this list using the same format for all the field names you want
$field_names = ['2g_network', '3g_network'];

// Set up tabs
$to_echo = '[vc_row][vc_column width="1/1"][vc_tabs]';

// Set up features tab
$to_echo .= '[vc_tab title="Features" tab_id="features"]';

// Begin a list
$to_echo .= '<ul class="features_list">';

// Loop through the fields
foreach ($field_names as $field_name) {
  $data = get_field_object($field_name);

  // Check if we have a value and set to a default if not
  if ($data['value']) {
    $value = $data['value'];
  } else {
    $value = 'No information on record.';
  }

  $to_echo .= '<li>' . '<span class="features_label">' . $data["label"] . ': </span>';
  $to_echo .= '<span class="features_value">' . $value . '</span></li>';

}

// Close the list
$to_echo .= '</ul>';

// Close the tab
$to_echo .= '[/vc_tab]';

// Close the tab group etc.
$to_echo .= '[/vc_tabs][/vc_column][/vc_row]';

// We have to filter the whole string to make WP interpret the shortcodes
$to_echo = wpb_js_remove_wpautop($to_echo);

// Output
echo $to_echo;

My note above about only needing to change $field_names applies to this as well.

If you were going to put other tabs in, you would modify the lines that open and close the tab groups, and use those in a similar way. I realize that this is just a simple list and not a table like you wanted — more research would be needed for me to construct a way of getting the label of the field group and such…

Hope that helps. I do think what you need isn’t just “support” but custom work, although it will be fantastic if you can figure the rest out by research, trial and error.

Best of luck!

Lucian
tagDiv Staff

Hi,


@sgaddo

We still have incompatibility issues regarding VC style, we are currently working to a new grid which will support all VC elements.
If you like the buttons styled that way you can keep that solution but I can’t tell in what way will affect your site, you will have to keep in mind this changes and refer to it if you encounter any issues.


@reenamn

In the last version of Visual Composer the classes have changed and the buttons that we haven styled lost their css, we have this on our todo list and we are working on it. Sorry for the inconvenience. You could try to use a plugin for that until we can provide a fix for this.

Thanks for the message!

consafo
tagDiv Member

Thanks. I turned it off and just dropped the GA embed code into your theme’s place for it. Works fine!

sgaddo
tagDiv Member

@reenamm
I just solved in this way, but I’d like to know from TagDiv’s crew if it’s ok:
in my child theme’s custom css, I’m importing the right css from Visual Composer’s assets folder, in this way:
@import url("../../plugins/js_composer/assets/css/js_composer.css");
Look at my page now
http://mailneo.biz/about-neomobile/

Why doesn’t the theme load it by itself?

reenamn
tagDiv Member

Hi There,

I too am having the same problem with the CTA blocks and buttons.

See CTA block on this page: https://www.kidsonkeysnyc.com/k/about-us/

I have reinstalled Visual composer using the plugin file included in the download and that didn’t help.

Please advise.

Lucian
tagDiv Staff

Hi,

We know about this issue which happens when using the Google Analytics by Yoast plugin.
I have checked your site and noticed that you also use it: http://screencast.com/t/nPwcvBm0jvyl
We have already wrote to plugins author so we can find a solution for this, you can also write to their support page: https://wordpress.org/support/plugin/google-analytics-for-wordpress
We are trying to fix this but unfortunately is more difficult than we initially tooth. You can deactivate the plugin in order to make links work and until we find a solution for this.

Sorry for the inconvenience!
Thanks for the message!

simchris
tagDiv Member

You might try this tool recommended for WordPress based websites:
http://sitecheck.sucuri.net/

Website: hm86.ru/ 
Status: No Malware Detected by External Scan. Additional Actions Recommended! 
Web Trust: Not Currently Blacklisted (10 Blacklists Checked)  

Web Server Details 

Scan for: http://hm86.ru/
 Hostname: hm86.ru
 IP address: 69.10.55.48 

System Details:
 Running on: nginx
 Powered by: PHP/5.2.17
 Cached from: Backend

Web application details:
 Application: WordPress 3.9.2 - http://www.wordpress.org
  Running cPanel 11.44.1.18: hm86.ru:2082

Web application version:
 WordPress version: WordPress 3.9.2
 WordPress Version 3.9.x based on: http://hm86.ru//wp-admin/js/common.js
 WordPress theme: http://hm86.ru/wp-content/themes/Newspaper/

List of scripts included 

http://hm86.ru/wp-includes/js/jquery/jquery.js?ver=1.11.0
 http://hm86.ru/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1
 http://hm86.ru/wp-content/plugins/bbpress/templates/default/js/editor.js?ver=2.5.4-5380
 http://hm86.ru/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20
 http://hm86.ru/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=3.9.1
 http://hm86.ru/wp-content/themes/Newspaper/js/external.js?ver=3.5
 http://hm86.ru/wp-content/themes/Newspaper/js/site.js?ver=3.5
 http://hm86.ru/wp-content/themes/Newspaper/wpbakery/js_composer/assets/js/js_composer_front.js?ver=3.6.8
 http://html5shim.googlecode.com/svn/trunk/html5.js

And frankly if your hosting company isn’t using a virus scanner it is likely a good idea to look at another host!

  • This reply was modified 11 years by simchris.
  • This reply was modified 11 years by simchris.
sgaddo
tagDiv Member

Hi Lucian,
nothing we talked about solves the problem in my case =(
I have:

  • Theme Version 4.3
  • Visual Composer Version 4.3.4 (deactivated, uninstalled and reinstalled several times from your package)
  • Child theme running (I also tried to activate the main theme)
  • I deactivated all plugins and tried again but it doesn’t work

Anyways, in your screenshot http://screencast.com/t/h8547NHbMdVa Button 2 is not stylized like Visual Composer edit page does, but they come out both with your own style. Instead I’d like to have both different styles, Visual Composer’s and yours.
In your example what should be the actual difference between “Button” and “Button 2”?

Thanks!

consafo
Participant
#0

I created a front page with my newspaper theme. It is the latest version (4.3) and WP 4.0.

I used an element in the visual composer called “Slide.” It creates a single image in the block, tied to a category of posts. The element appears on the front page. The image is there, along with the title of the post, category, date etc.

The title of the element links correctly to the article because I manually set it in the element settings. This works for now only because I have it limited to one article. But that manual link won’t work if there are two or three articles showing in the slideshow.

But the image itself and the title of the post are not hyperlinked correctly. They appear to be hyperlinked if you hover over them with your mouse. And the URL showing at the bottom of the browser when hovering is correct. But the link will not work.

Front page here – http://smartoncrimetexas.com/
Top left image is the one.

I can provide login credentials privately if needed.

Lucian
tagDiv Staff

Hi,

Please make sure you follow this guide and install the WPBakery Visual Composer plugin from the plugins folder that came with the theme files.
If this does not help please deactivate all plugins, clear cache(s), CDN caches if you use any and try again.
Please let me know.

Thanks

Lucian
tagDiv Staff

Hi,

Thanks Christopher!

@moregoodfoundation

Please make a back-up of your current theme installation as Christopher wrote then update the theme to the latest version (4.3) if you are using a an older theme version if not re-upload the theme files delete the wpbackery from theme files then upload it from plugins folder like here
If this dose not solve this issue please send your wp-admin user and pass at contact@tagdiv.com so we can check this, also send a link to this topic or specify your issues details.

Thanks

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

Hi,

I have tested this using the latest theme version 4.3 and with WPBakery Visual Composer version 4.3.4 and worked fine for me: http://screencast.com/t/h8547NHbMdVa
As you noticed the css to style the buttons dose not apply in your case, this is because the classes used by css are missing: http://screencast.com/t/V3LhNREDXhGB
Please make sure you install the WPBakery Visual Composer plugin from the plugins folder that came with themes files like this: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
Also try to deactivate all plugins and then check if this issue is still there.

Thanks

racketeer
Participant
#0

hello

i would like to ask a question about woocommerce shop page

i try to add a revolution slider above the woocommerce shop page (via visual composer). if there is no side bar in the shop page it has no problem.

but when i choose to view side bar, it stars near the revolution slider (also because of that rev.slider become narrow)

is there any way that we can set the revolution slider above the woocommerce shop page (above shop page with side bar)

you can see in this pic.
http://www.screencast.com/t/nLu6vWX2ME5

thank you
best regards

sjlabar
Participant
#0

There is no visual composer appearing in pages editor after i made the theme update.

Emil G
tagDiv Staff

Hi,

The Visual Composer plugin that comes with the theme is licensed to the theme, the license specifies that only we can provide the updates and you don’t have to buy it or register it. We provide updates on a regular basis, after we test the plugin for theme compatibility the plugin is included in the latest theme update, inside the Plugins folder – http://screencast.com/t/6QIBYx3a4t

Here is guide on how to update the plugin – https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/

The latest version included in the package is 4.3.4 – http://screencast.com/t/cLB7SS4RBbY

Thank you, Emil G.

sgaddo
tagDiv Member

Hi Lucian,
here’s what I see in edit page with Visual Composer
http://www.screencast.com/t/w0gQLdhOtNs
The upper two are made with “Button 2” element while the second on the right side is made with “Button” element.

On this link there’s my page
http://mailneo.biz/about-neomobile/

Below the video you can see links instead of buttons, but the second red one is styled as your tagDiv buttons.

Thanks!

Lucian
tagDiv Staff

Hi,

This may also happen when you have a CDN and the cache is not cleared, it delivers old files which conflict with the newer ones. Purge the files on CDN, clear all caches and check again.
Please let me know if this helps!

Thanks

Lucian
tagDiv Staff

Hi,

Please follow this guide and delete the plugin then install it from the plugins folder that came with the theme files, you don’t need to rename any folder, just delete the plugin and install from the plugins folder: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/

Thanks

Viewing 25 results - 52,126 through 52,150 (of 52,922 total)