Search Results for 'composer'

Results from the Forum
Bogdan B.
tagDiv Staff

Hello,
We do not work on weekends so that is why answers are a bit delayed. 1.The travel demo uses the background image a bit different. It has it set on the row in visual composer. You need to edit your homepage and access row settings: http://screencast.com/t/Z2VHdgzUTuV3
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Are you sure you don;t have this option disabled: http://screencast.com/t/nGi4es4Yy1
I cannot find the code for the icons in your website. If this option is checked and it still will not appear, then please try to disable all your plugins except visual composer, clear your cache and reset cdn if you use it.
If the problem is still there afterwards, please send us an email at contact@tagdiv.com and provide wp-admin so we can take a look. Also provide a link to this topic so we can identify you.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Basically your problems from 1 to 5 are all related to the same problem. Please disable all plugins except visual composer and clear your cache (also reset cdn if you use it). These issues are often plugin conflicts. Not all plugins are compatible with premium themes as the code is custom.(plugins are created on the default WP code)
If these issues only appear in the child theme, then please try to recreate it and use the one that comes with the theme: http://screencast.com/t/AtA0saskv7bR
your last question is a different matter. It is a known problem that will get fixed in a future version of the theme. Until then, there is a workaround. Please follow this topic to see how it can be done:
https://forum.tagdiv.com/topic/search-error-message-thumbnail-is-not-set/
Thank you!

Bogdan B.
tagDiv Staff

Hello,
It seems that for some reason some of your images lose their responsiveness. Is there anything different to these images than the ones that work? Do they have a different implementation?.
If you use image plugins, please try to remove them (If you use photon of jetpack, it is known to cause issues)
Please try to disable all plugins except visual composer, clear cache and reset cdn files if you use it and check your images again.
Let us know if the problem is still there.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Please try to make a fresh install of the theme (I see you do not have it active at the moment.)
Then only install the visual composer version that comes with the theme. Please remove any other version from the plugins section (disable and remove) and then install it from here: http://screencast.com/t/DwZN21u0VR
Please let us know if you still have problems afterwards and let us know when you have the theme active so we can inspect your website.
Thank you!

Catalin
tagDiv Staff

Hello thies,

In order to achieve as you wish, please try using Text with Title element from Visual Composer and add it in RAW HTML like this -> http://screencast.com/t/Ew4yovoU and from panel you can set the background color and text color like this -> http://screencast.com/t/GShDKyFyuEF

The result you should see here ->> http://screencast.com/t/RpMlKnn9Y

Hope this helps!

Thank you for the message!

simchris
tagDiv Member

Try clearing cache, or turn off caching, resave permalinks, turn off all plugins except visual composer to figure out what might be causing issue with latest version of WP (not all plugins are updated to work with WP 4.2x and break things!).

alexmark
Participant
#0

My site crash after activate the theme and Visual Composer. 503 error show up. I encountered the same issue as I installed a similar theme with VC previously but was fixed by its author as following:

“How many posts, categories, tags do you have? One of the features Goliath has is filtering post block content by tags. In some cases where shops have many thousands of tags, these all get read into memory until it runs out. You can try to disable this by doing the following:

edit theme/vc_content_blocks.php and replace this:

$post_tax_tags = get_terms(‘post_tag’);
$post_tags = array(” => ”); //blank entry
foreach($post_tax_tags as $pt)
{
$post_tags[$pt->slug] = $pt->slug;
}
with this

$post_tags = array(” => ”); //blank entry
/* $post_tax_tags = get_terms(‘post_tag’);
foreach($post_tax_tags as $pt)
{
$post_tags[$pt->slug] = $pt->slug;
} */

You have 10k+ tags, so I’m 100% that it can fix the memory and speed issues you’re having.

I wonder if you can apply it to your theme?

Alex

hayulthegoat
Participant
IE9 issues - topic
#0

———————————————————————————————————-

Hello, admin. This is the first time that I use Newspaper and I am very satisified with amazing site speed. Considering the fact that all the other commercial themes are slow , it is pretty impressive.

But I found some compablity issues related to IE9. Below are the list that I checked in the actual IE9 browser.

1. Top header menu and log-in box : The log-in forms are viewable when users are NOT logged in. It looks so messy.

2. Font-awesome icons are not available. Especially ”:before” selectors are.

3. Visual composer tabs won`t work.

4. Footer is so messy.

5. Pulldown nav wont work.

6. Search result error message on deafault thumbnail post.

I know the visual composer dumped IE9,10 out recently and wrote describtion of compatible browser “IE11”.

simonlevick
Participant
#0

Hi there,

You can see on this page http://simonlevick.com/3992-2/, that the video homepage is very broken.

I am also suffering a problem on this page http://simonlevick.com/2016/02/10/sail-awolnation-cover/
The video padding appears to be ten times too large (560% instead of 56%??).

The third problem I have is this notification:

Important notice: You have an outdated version of Visual Composer Design Options. It is required to review and save it.

However when I click Open Design Options, I get this message:

You do not have sufficient permissions to access this page.

How can I fix this please?

Magistar
tagDiv Member

Nice :).

If you are using Elegant Theme’s something seems to always break on every major WordPress update :P.

Anyway I just noticed the following code:

<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]--><style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important}</style><!--[if lte IE 9]><link
rel="stylesheet" type="text/css" href="http://www.x.info/nl/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css?152966" media="screen"><![endif]--><!--[if IE 8]><link
rel="stylesheet" type="text/css" href="http://www.x.info/nl/wp-content/plugins/js_composer/assets/css/vc-ie8.min.css?152966" media="screen"><![endif]-->

Did someone find a fix for that one? I am already using Chris’s example:

/*remove visual composer*/
add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}
/*remove Visual Composer CSS from “post” pages */
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);
/*clean head */
remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
/*remove 4.2 emoji*/
remove_action( ‘wp_head’, ‘print_emoji_detection_script’, 7 );
remove_action( ‘wp_print_styles’, ‘print_emoji_styles’ );

  • This reply was modified 10 years by Magistar.
thies
tagDiv Member

Hello tagDiv,

That’s too bad 😉
If I use the Visual Composer – > RAW HTML:
<h4 class=”block-title”><span>LEZEN</span></h4>

Then i see this: http://www.screencast.com/t/NJd2aGTO52G
I can adjust the font color, but the background color does not.

Is it not possible to copy the CSS code and rename it?

Kind Regards,

Thies

Catalin
tagDiv Staff

Hello Sandman,

This issue maybe comes from incompatibility between untested plugins and our theme. Please try to disable all the active plugins, leave just Visual Composer, clear all cache and install only the plugins that come bundled with our theme and rule out the conflicting plugins.

Hope this helps and let us know how it goes!

Thank you for the message!

Bogdan B.
tagDiv Staff

Hello,

@jurisss
I just tested this feature on my end again but i cannot recreate this issue. Please try to disable all your plugins except visual composer, clear your cache and reset cdn files if you use it. If the problem does not go away after that, please send us an email at contact@tagdiv.com and provide wp-amin so we can take a look at the issue. Also include a link to this topic so we can identify you.
Thank you!

Catalin
tagDiv Staff

Hello Fred-B,

First of all, please try to disable all the active plugins, leave just Visual Composer, clear cache and install only the plugins that come bundled with our theme and rule out the conflicting plugins. After this advice, check your website again and if your problem is still there, please provide your website URL so I can further inspect the issue.

Hope this helps and let us know how it goes!

Thank you for the message!

Andrei L.
tagDiv Member

Hi

This issue occurred after WordPress released V 4.4.1 but we updated the theme and now the pagination works fine. Try to update the theme at the current version available on themeforest, V2.3.5: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ deactivate all plugins except Visual Composer, clear all caches and test again.
Let me know how it goes.

Thanks!

Catalin
tagDiv Staff

Hello adarsh,

This kind of issue is surely plugin related. Please try to disable all the active plugin, except Visual Composer, clear all cache and install only the plugins that come bundled with our theme and rule out the conflicting plugins.

Hope this helps and let us know how it goes!

Thank you for thme message!

Bogdan B.
tagDiv Staff

Hello,
This could be a plugin conflict, and not theme related at all. Sometimes plugins conflict with each other or the theme and js errors occur. A java script error could break the pagination. Upon checking your website, I saw that you are not getting any js errors in your console apart from a few mixed content ones: http://screencast.com/t/lJwsbuvIdcSt and the category pagination works as expected.
Maybe you figured it out in the meantime or the plugin causing the issue got updated…
In any case, when you see js errors in the console, try to disable all plugins except visual composer, clear cache and reset cdn. Then check again. Plugins are the number 1 reason for this type of errors.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Please make sure you deactivate ALL plugins and just leave visual composer active. Then clear your cache and reset cdn files if you use it. The theme does not have any js erros in it’s default state. you can inspect our live demo: http://demo.tagdiv.com/newspaper/
Let us know how it goes.

Catalin
tagDiv Staff

Hello ninjaray,

You should try to use Tab element of Visual Composer and add in it “Text with the title” with your desired gallery. I have tested on my side and seems to works as expected, like this -> http://screencast.com/t/IHOdHh1ZQS4 and the result you should see here -> http://screencast.com/t/2QR1H9Cl Also, you should try lazy load option for better results. This feature can activate from Theme panel like this -> http://screencast.com/t/kVG18t3gFi7g
If is not what you mean and if with my quick solution you cannot achieve as you wish, please try to find some plugins with this functionality or please consider hiring a freelancer/developer to do this for you because we cannot provide custom services at the moment, sorry!

Hope this helps and let us know how it goes!

Thank you for the message!

Bogdan B.
tagDiv Staff

Hello,
If the theme is not activated then we cannot inspect the issues unfortunately. The tabs element should work if there is nothing in conflict with it. I suspect a plugins conflict as well, so please disable all your plugins except visual composer and clear your cache. then check your tabs again.
In order to place full width images on your pages, you can use a full width row and add an image to it: http://screencast.com/t/b3qqg7KIv you can see this type of implementation on our travel demo: http://demo.tagdiv.com/newspaper_travel/
For the category pages, we will have to see how the images are positioned on your website, so please lt us know when you have the theme active so we can inspect it.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Maybe your pagination problem comes from a conflicting plugin. Please try to disable all your plugins except visual composer, clear your cache and reset cdn if you use it. Then test your pagination again.
If the problem persists, you will have to test the theme in it’s default state. Please create a sub-domain and create a fresh install of the theme (latest version).
Let us know how it goes.
Thank you!

Andrei L.
tagDiv Member

Hi

Please make sure that you didn’t set any offset in block’s settings where it suppose to show the most popular articles, also try to 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 provide wp-access so we can have a look and send us your wp admin credentials via email at contact@tagdiv.com and include a link to this tread into your message.

Thanks!

Danibell
tagDiv Member

I have just seen that Microsoft Edge is doing fine but the Firefox isn’t and I was working on the MS explorer earlier on when I noticed, also not responsive header.
I have a site http://2imsa.be which is Dutch and is has the newspaper theme without any demo installed.
http://2imsa.be/news is a copy of it but with the “Car demo” installed without the data and in English.

Both of them are new clean installations, only Akismet and Hello Dolly came with the installation but not activated.
Only WP Bakery Visual Composer and Revolution slider are activated.

Could you look at it in different browsers
The picture is not showing the same

I saw other issues about it in the forum

sohulk
Participant
#0

How do I change the newsticker title?
I want to say something else rather than “Trending now”
Dont see the option in Visual Composer.
Thanks.

Viewing 25 results - 47,526 through 47,550 (of 52,922 total)