Search Results for 'update'

Results from the Forum
v1ktor
tagDiv Member

Hey Andrei,

This seems to be an issue with CSS related to “vc_column_container” class, which has width: 100% and overrides CSS of the columns. After a bit of research I did find that this might be an issue with how you’re outputting classes and modifying them in VC. Someone else had same exact problem in a different theme with VC.

Here’s the info:
https://oceanthemes.ticksy.com/ticket/842704

You can see that they had a response from VC support, which indicated that:

The issue is because theme author has modified our default column classes using:https://wpbakery.atlassian.net/wiki/display/VC/Change+CSS+Class+Names+in+Output Due to this it breaks upon the update.

This sounds like a possible bug. Thanks.

MarceloS
tagDiv Member

thanks Chris. It worked.

I have purchased the composer plugin previously. Do I have to change/update it?

I saw that there is a speed booster plugin. I don’t recall seeing it in my initial install. What does it do?

creativepile
Participant
#0

Hi there,

I WordPress automatically updated and this started showing up:

“Notice: get_userdatabylogin is deprecated since version 3.3! Use get_user_by(‘login’) instead. in /hermes/walnaweb04a/b971/moo.creativepilecom/wp-includes/functions.php on line 3658”

Would you know what this is?

Here is a link of a post with the notice info under the title
http://www.creativepile.com/2016/07/24/what-is-a-line-sheet/

4Musky
Participant
#0

Hi,

When I post a new article and someone opens it from a laptop browser, the article page seems to appear in a ‘mobile theme format’.
Also my paragraphs are not represented in the published page.

http://animal-welfare.org/famous-vegan-celebrities-woody-harrelson/.

It only happens in new articles, a relative short period after posting. The second screenshot is from the ‘old’ kellogs article, it has the normal appearence. I have tested more than one browser (chrome and firefox) the bug is the same. I have noticed that last week for first time, thought that it was something random, but it’s not.
If you post a new article or update an old one, the ‘bug’ happens.

The bug I noticed is on the desktop version of the site.
When you open the new or updated article.
Only for a sort period of time, say 30 min or more .
But not from the browser you made the changes.

simchris
tagDiv Member

So, I want to remove Google fonts, stop them being loaded in page head, and use default mobile friendly font stack, also works for desktop:

——- PART 2 / FONT SWAP;
remove default Google Fonts in theme and loaded externally ——–

**/theme/includes/td_config.php

/remove google font calls for defalt roboto and open sans

lines 3247-3259 — remove:

/**
* the default fonts used by the theme. For a list of fonts ids @see td_fonts::$font_names_google_list
*/
td_global::$default_google_fonts_list = array (
'438' => array(
'css_style_id' => 'google_font_open_sans',
'url' => td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700'
),
'522' => array(
'css_style_id' => 'google_font_roboto_cond',
'url' => td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto:400,300,700,700italic,400italic,300italic'
),
);

**/theme/style.css v3.1

<< do search/replace for ‘string’ using text editor like BBEdit, TextPad, etc.) >>

lines 352 + 866 + 962 + 1663 + 1752 + 1861 + 2608 + 5355 + 5388 + 5450 + 5691 + 5734 + 7303 + 7340 + 7565 + 7608 ((ETC.)),
replace: font-family: 'Open Sans', arial, sans-serif;

with modern font stack:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

lines 379 + 387 + 473 + 1968 + 2006 + 2118 + 2160 + 2301 + 2625 + 7500 ((ETC.)),
replace: font-family: 'Roboto', sans-serif;

as above, same font stack, or choose a serif stack for replacing Roboto.

this isn’t best choice, but option:

font-family: Rockwell, Georgia, Times, "Times New Roman", serif;

======
REMINDER: these haxx need to be done EVERY theme update; keep record and backup of your files in sub-folder on your work PC/Mac to easily redo this as needed for future versions of Newsmag (if you want… or not, won’t matter to me either way … just sayin….) 🙂

simchris
tagDiv Member

Be sure to also update all the plugins that come with the theme at same time. 🙂

Also be sure to ‘export’ your settings from Theme, and also do tools > export before you update anything in WP in future as part of normal back-up process.

MarceloS
Participant
#0

Hello.

I updated the theme using your recommendations: deleted the theme and uploaded through wordpress.

Everything looks fine, except for the social plugin. In theme settings, the social links were missing, and the widget is appearing with errors. I added the links again, still broken.

I am worried that I may have lost other settings…

popngen
tagDiv Member

Alin,

Thank you for the prompt reply. Your support is beyond fantastic!

I just removed import_video_slider_bg to clean things up, and it’s back to the default: white/clear.

Last question:

I’m actually using Big Grid 2, and yes I’m using the video demo as a start. If I change the default color directly on the demo style sheet, will it get over written if Newspaper gets updated? I am using Newspaper through my child theme.

TheMediumUTM
tagDiv Member

Thanks for your reply. I just tried disabling all plugins except VC, and turning off Cloudflare and CDN. The problem remained.

I believe this began either after I updated to Newspaper 7.3 or WordPress 4.6 recently…

simchris
Participant
#0

Hi, folks
I’m “re-tuning” the NM 3.1 – having moved from v2 (finally!). Working great with the beta TD Composer so far, but barely touched that.

I’m looking to completely remove these loading from theme:

http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&ver=4.6
http://fonts.googleapis.com/css?family=Roboto%3A400%2C300%2C700%2C700italic%2C400italic%2C300italic&ver=4.6

and instead use the new default font stack used by WordPress 4.6x in place of Open Sans.

This new font stack is a little better than the one I have been using (noted in my epic optimization tutorial thread near the end) as it is tuned for modern mobile devices much better than my desktop focused version:

font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

(REF: https://make.wordpress.org/core/2016/07/07/native-fonts-in-4-6/ )

This would make a nice “default” setup for Newsmag, “unless Google fonts chosen,” vs default having Google fonts chosen.

In any case, if you can help me out by pointing me at the correct files to tweak to make this change would be awesome. Things have moved around a bit, so the old search/replace in style.css not quite same method now 🙂

I have no problem hacking a core file to remove Google font calls, as I’m prepared to do that each theme update for my other tweaks.

THANKS!

broadstone
Participant
#0

My site updated to newest WordPress version, now I can’t log in to Dashboard:

http://www.financialthing.com/wp-admin

Please assist as this is urgent.

Thanks

teachercast
tagDiv Member

Thank you for the quick reply Bogdan. I have reset my CDN and also tried flipping off the plugins and for some reason this one is sticking. I have even confirmed that it looks odd on other computers around the world.

I am also interested in updating the Visual Composer. While updating the theme last night, I updated the visual composer, but WordPress is still telling me that there is yet another newer version. Is this something we should worry about, or will that update be in the next version of the theme when you update it next?

Do you think the visual composer issue is causing the big grid to not work properly? Are you seeing that the Big Grid is broken when you look at it on TeacherCast.net

Thank you for the help.

Bogdan B.
tagDiv Staff

You should ask the wp developers :).
https://codex.wordpress.org/Child_Themes
I personally think it’s a waste of time and effort but that is my personal opinion on the matter. The purpose is to customize the theme files without altering the main theme and saving some time for future updates. If the file does not get modified in the next 3 updates for example, then you do not need to touch the child theme files…but if the files do, then you have to replace the files and re-apply the modification. I find it a waste of time as you need to constantly keep track of what files are changed when updating.
There are different opinions on the matter though so It is depends on the user preference.

Thanks.

mikehenze
tagDiv Member

Hi,

What is the use of a child theme if it is not update proof?

Bogdan B.
tagDiv Staff

Hello,

Please try to use the ftp method to update your theme as it;ls the safest way to do it: https://forum.tagdiv.com/how-to-update-the-theme-2/
Please also make sure to update your visual composer plugin afterwards to version 4.12 as it is required by newspaper 7.3 – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/

Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

Thanks for letting us know! I have added it on our list and it will be fixed in a future theme update.
Please try this custom css in Theme Panel > Custom Css for a quick fix – http://screencast.com/t/KEYpJ1Um

#td-mobile-nav .td-menu-socials {
height: auto;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure you use the latest version of Social Counter provided with the theme 4.1. If you need to update it, you can find it in plugins folder from the theme package that you download from themeforest – https://forum.tagdiv.com/whats-included/ and make sure you have configured it properly using the api key, check this guide – https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
If it still doesn’t work please send an email at contact@tagdiv.com and provide wp-admin access so we can take a closer look. Let the Social Counter configured with your api key. Also paste a link to this topic.

Thanks!

Bogdan B.
tagDiv Staff

Hello,
The design of the social counter is changed either from visual composer if that is the way you implemented it or from the widgets area if you added it to a sidebar: http://screencast.com/t/w4OEwxIHZ
These features are only available in newspaper 7 and social counter version 4.1
Please update your theme and social counter if you do not see the styles.
Thank you!

David L
tagDiv Member

Hi, Brian here.

Yes the site works with vanilla 7.3 and the sidebar is fine.

However: I’m trying to get a child theme working and every time I turn the child theme on the homepage messes up and the sidebar disappears.

Here’s what I’ve done:

Folder called: Newspaper-7_3-IC-Child
style.css
/*
Theme Name: Newspaper 7.3 Israellycool Child Theme
Theme URI: https://themeforest.net/item/newspaper/5489609?s_rank=1
Description: Newspaper 7.3 Israellycool Child Theme
Author: Brian of London
Author URI: http://www.israellycool.com
Template: Newspaper
Version: 7.3 [corresponds to theme version 7.3]
*/

functions.php
<?php
// Added by Brian of London BoL 2016-07-20
// Updated 2016-08-18 to try to rework after 7.3
// switched from old method of child theme loading
// "Note that the previous method was to import the parent theme stylesheet using @import:
// this is no longer best practice, as it increases the amount of time it takes style sheets to load. "
//
//

function my_theme_enqueue_styles() {

$parent_style = 'parent-style'; //

wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>

That’s it, no other changes made yet (I’ve got a screenshot.png file in the folder too).

As soon as I select that child the sidebar suddenly jumps to the bottom of the page, before the footer.

Bogdan B.
tagDiv Staff

Hello,

Unfortunately there is no automatic update for the year in the footer section. You will have to change one number once a year from the footer settings.

Thank you!

teachercast
Participant
#0

Thank you for the help. I just updated to version 7.3 through the Envato Plugin and then updated my visual composer successfully.

Everything seems to have gone perfect … except

My Big Grids on the front page are not looking so hot

http://www.teachercast.net

I noticed on the http://www.teachercast.net/news page everything transferred over and is looking good.

On the homepage, I have deleted the grids, added different grids and for some reason no matter what grid I put on the homepage it doesn’t have the correct formatting.

Thank you for any help or suggestions on this.

Jeff

Bogdan B.
tagDiv Staff

Hello,

The author will need a bit of a css fix as the css got changed a bit in the new update but the author name was not updated for it. So until the next theme version please use this CSS code in the mobile theme’s custom code box:

.td-post-author-name div { display:inline; }

Thank you and sorry for the inconvenience.

Bogdan B.
tagDiv Staff

Hello,

The author will need a bit of a css fix as the css got changed a bit in the new update but the author name was not updated for it. So until the next theme version please use this CSS code in the mobile theme’s custom code box:

.td-post-author-name div { display:inline; }

Thank you and sorry for the inconvenience.

Andrei L.
tagDiv Member

HI

You can change the title for news ticker from theme panel > translations: http://screencast.com/t/CG6XqLW8JZ Just add in indicated filed the desired title and the theme will display it also after updates.

Let me know how it goes.
Thanks!

Jens H.
tagDiv Member

I did the update yesterday, and have experienced som issues if you create two posts right after each other. But whether it was a “user mistake” or a “core error”. Don’t know yet.

I can’t see it being anything to do with Newsmag

Thanks for the answer.

  • This reply was modified 10 years by Jens H..
Viewing 25 results - 33,001 through 33,025 (of 45,280 total)