Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
beermoney
tagDiv Member

+1 for Patreon and Bandcamp additions.

beermoney
tagDiv Member

Email sent.

Also, there is a private page called “Home 2”, this is where I was testing the TD Composer at.

  • This reply was modified 8 years by beermoney.
beermoney
tagDiv Member

I’ve tried all those things already. No luck though.

beermoney
tagDiv Member

Visual Composer is still packed with. It’s just that it’s only apart of the “All Files & Documentation” zip file that you have the option to download. Download that and open the “plugins” folder and you will see “js_composer.zip”.

beermoney
tagDiv Member

Rolling back to the previous version in the link you provided did the trick. Thank you.

beermoney
tagDiv Member

I just went to do that and looking…..I don’t see the Social Counter in the WPBakery Visual Composer Page Builder. Was it removed? Is it now only apart of the tagDiv Composer? I am not a fan of the tagDiv Composer and stuck with WPBakery Visual Composer. When I go and look at the block, its been converted to a Text Block and I don’t see the Social Counter block.

beermoney
tagDiv Member

I reuploaded the theme and the plugins that I use and the error is now removed and the social buttons are styled as they should be.

beermoney
tagDiv Member

I am not actually using the WP Booster plugin. Which is why I thought it was weird that it all of a sudden was showing that error.

I use WP-Optimize every morning.

I have cleared the browser cache in the browser options. I use the Hummingbird plugin and have cleared the page cache and minification cache.

I just swapped the permalinks around. Still nothing.

beermoney
tagDiv Member

While in “Post Settings -> Sharing” of the theme panel, there is nothing besides “Share Button Style” option for both the Top buttons and also the bottom buttons. When I turned off the Top Article Sharing and Bottom Article Sharing the error went away. Of course, then the feature doesn’t work.

beermoney
tagDiv Member

Looking some more, this error is only showing in Firefox. Chrome and IE do not show it. I’ve cleared all the caches on the site and in the browser and it still shows.

beermoney
tagDiv Member

Oops. I forgot to mention that I have already cleared the sites cache, my browsers cache and tried other browsers. I had already disabled plugins and still wasn’t able to get it to show up. You can take a look and see if you see anything. I’m stumped.

http://thesinbin.net

beermoney
tagDiv Member

I can understand that I suppose. Just was annoying that I have to download a different download over what I have been downloading in order to get the plugin. I also see that is where the speedbooster plugin went to as well. I thought that had also been canned.

beermoney
tagDiv Member

It was included in the “All Files & Documentation” download, but not in the “Installable WordPress File Only”. How come?

All Files: http://oi66.tinypic.com/2n0ri28.jpg

WordPress Only: http://oi67.tinypic.com/e5sk1w.jpg

beermoney
tagDiv Member

That did it. Thanks @Catalin. This can be marked as solved.

beermoney
tagDiv Member

The latest version available for download is 7.4 which was released 9/12/16.

beermoney
tagDiv Member

I ran into this exact same problem two days ago. It just all of a sudden started happening out of nowhere. We couldn’t update any pages or posts. We run into the 404 Error every time. We tried changing the permalinks to a different structure and nothing worked. I ended up contacting our Web Host for help….They ended up needing access to our WordPress site and figured out that something had set off the Mod_Security in our hosting account. Only way to fix this Mod_Security issue is to have the web host whitelist it. After they did that, everything is once again running as normal. Hope that helps.

beermoney
tagDiv Member

They say to deactivate all your plugins, clear your cache and CDN files, and then go into the Theme Panel and click on the Save Settings button.

I tried all these options and it didn’t work. The only way I was able to make it work was by hiding it via CSS. That purple gradient is actually the Mobile Menu background.

Here is the CSS code that I used to hide that background on the Desktop and Tablet versions of the site, while still having it show for Mobile Phones.

/* -==========================- DESKTOP -==========================- */
@media only screen and (min-width:1024px) {
.td-menu-background:before { display: none; }
}

/* -==========================- TABLET -==========================- */
@media only screen and (min-width:640px) and (max-width:1023px) {
.td-menu-background:before { display: none; }
}

If using a Child theme or editing the main theme, place that CSS at the very bottom of the Stylesheet (style.css). Again, this was the only way I was able to remove it while still allowing it to work on phones. Hope this helps you.

As you can see…by hiding it on the desktop version, it no longer shows. https://i.imgsafe.org/ef2118f.jpg

  • This reply was modified 10 years by beermoney. Reason: Add Screenshot
beermoney
tagDiv Member

I had the exact same issue this morning when I updated to v7.0. I couldn’t for the life of me figure out what the heck this gradient bar was on the left side of the screen. I hid it via CSS, and then figured out about an hour later that this was the background for the new mobile menu. I ended up just adjusting my CSS as I couldn’t figure out as to why this was showing on the Desktop version. Here is what I used in the CSS of my Child theme:

/* -==========================- DESKTOP -==========================- */
@media only screen and (min-width:1024px) {
.td-menu-background:before { display: none; }
}

/* -==========================- TABLET -==========================- */
@media only screen and (min-width:640px) and (max-width:1023px) {
.td-menu-background:before { display: none; }
}

This hid the menu from showing up on the Desktop and Tablet versions of the site, but still showed up on the Mobile Phone version. If you don’t want it hid on the tablet version, then just leave that out and just use the top section for Desktops. This was the only way that I could figure out how to remove it as I couldn’t find any info on it.

  • This reply was modified 10 years by beermoney.
  • This reply was modified 10 years by beermoney. Reason: Added Code Tag
beermoney
tagDiv Member

Nevermind. It needed to be js_composer. I got everything fixed and working again. That was a close one!

beermoney
tagDiv Member

Go into Theme Panel -> Translations and open the “Translations” drop down and scroll down to almost the bottom of the page. From there you can change “Trending Now” to “Bonus”.

beermoney
tagDiv Member

Thank you Chris S. That is one place I never thought to look. You were right, and I was able to make the change in the “translations” panel.

beermoney
tagDiv Member

I found that the caption was actually just hidden. So I was able to unhide it and style it and get looking just like I wanted.

The CSS that I used:

.td-post-template-3 .td-post-header-holder .wp-caption-text {
display: block !important;
float: right !important;
margin-right: 10px;
padding-bottom: 10px;
}

.td-post-featured-image figcaption.wp-caption-text {
background: transparent !important;
color: #fff !important;
margin-top: -27px;
margin-bottom: 0;
position: relative;
z-index: 1;
}

/*** Hiding it on Mobile ***/
@media (max-width: 767px) {
.td-post-template-3 .td-post-header-holder .wp-caption-text, .td-post-featured-image figcaption.wp-caption-text { display: none !important; }
}

Maybe there is another way to do it, but this seems to be working, and the only way that I could figure out how to do it.

beermoney
tagDiv Member

Go to Pages > then its probably going to be the News page if you didn’t change. The page where you would setup your blocks for your homepage…..look below the Visual Composer section for “Homepage latest articles” section. In that section you can choose the Sidebar Position, and also the Sidebar that you want it to use.

If that doesn’t help, you’ll have to wait for a mod.

beermoney
tagDiv Member

You can remove it via the Theme Panel

Newspaper > Theme Panel > Post Settings > Post and Custom Post Types > Show Post Views > click it to disable it.

beermoney
tagDiv Member

Is there a way that I could just create a Podcast WordPress Template that would show up up in the Template Settings > WordPress Templates and would only control the Podcast posts? If you go into Template Settings > WordPress Templates > Blog and post templates it will change whether the Podcast page has a sidebar or not. I have that set to No sidebars, as I don’t want any sidebars on normal blog posts. If there was a way to create a new Podcast Template that would show up in there and only control Podcasts it might work. I have no idea how to do any of that though. When hovering over a tag in the podcasts section of the ACP….in the link it says “post_type=podcast”. I don’t know….I am just trying to figure it out.

Viewing 25 posts - 1 through 25 (of 30 total)