Search Results for 'install'

Results from the Forum
Andrei L.
tagDiv Member

Hi

You can install our black version demo and the style will bee automatically imported: http://screencast.com/t/KyAQzEILWg If you don’t want demo’s content you can import only its settings, colors, fonts, styles etc.

Thanks!

valerianidesign
tagDiv Member

Hi Catalin, I just re-updated the theme as you indicated, via FTP, I deleted the old theme folder and wp cache but nothing really changed, images still won’t show up, header and sidebar is still missing, part of the menu as well.
In the admin panel i recive some error strings like these and part of the left menu is missing:

et ‘tds_thumb_td_1068x580’ in /web/htdocs/www.lungotevere.org/home/wp/wp-content/themes/Newspaper/includes/wp_booster/td_first_install.php on line 17

Warning: Illegal string offset ‘tds_thumb_td_1068x0’ in /web/htdocs/www.lungotevere.org/home/wp/wp-content/themes/Newspaper/includes/wp_booster/td_first_install.php on line 17

Warning: Illegal string offset ‘tds_thumb_td_0x420’ in /web/htdocs/www.lungotevere.org/home/wp/wp-content/themes/Newspaper/includes/wp_booster/td_first_install.php on line 17

Warning: Illegal string offset ‘td_version’ in /web/htdocs/www.lungotevere.org/home/wp/wp-content/themes/Newspaper/includes/wp_booster/td_util.php on line 150

Please help, we really need the site to work again soon becouse is election’s days here in Rome.
THX

ilnegozio
Participant
#0

Hi there,

First of all, please accept my apologies all of these.

Please allow me to ask a few things about customization of the new Newspaper version 7.0.

1. Since I am doing some customization on my site and based on what I had read on the documentation and on your rules that any update of the Theme we should try again to re-implement the code for our customization, so I decided instead of doing that again and again is to add the Child Theme, that any update of the Theme still the customization of site will be there right? Please advise if this the best option? Hope it will.

2. (If Serial 1 is not the best option, leave this.) Please advise if this is correct to Add a Child Theme via FTP I will just add the Folder “Newspaper-child” located in /code folder? base on this Tutorial Link to add it under “wp-content/themes” right? by just dragging it via FTP? same on this Image Link.

3. Author Box Card replace it with USERPRO shortcode.
Filename:
/wp-content/themes/Newspaper/loop-single-12.php – this is my style number

ShortCode to add:
<?php echo do_shortcode('[userpro template=card user=author]');?>

Original String Structure:

<?php echo $td_mod_single->get_social_sharing_bottom();?>
<?php echo $td_mod_single->get_next_prev_posts();?>
<?php echo $td_mod_single->get_author_box();?>
<?php echo $td_mod_single->get_item_scope_meta();?>
</footer>

Modified String Structure: Please advise if this is correct syntax code?

<?php echo $td_mod_single->get_social_sharing_bottom();?>
<?php echo $td_mod_single->get_next_prev_posts();?>
<?php echo do_shortcode('[userpro template=card user=author]');?>
<?php echo $td_mod_single->get_item_scope_meta();?>
</footer>

3.a. If I am using a Child Theme I just copy the Filename then create a directory structure path in the child theme as in the theme and paste the Filename based on this Tutorial Link aight?

4. Sign In/Join Desktop view popup version using USERPRO shortcode
Filename: wp-content/themes/Newspaper/parts/header/top-menu.php

ShortCode to add:

<div class="td-login-wrap">
' . do_shortcode('[userpro template=login]') . '

Original String Structure:

//<span class="td-sp-ico-logout"></span>
echo '<ul class="top-header-menu td_ul_logout">
<li class="menu-item">' .
get_avatar($current_user->ID, 20) . 'ID) . '" class="td_user_logd_in">' . $current_user->display_name . '' .
'
<li class="menu-item">
<i class="td-icon-logout"></i>' . __td('Logout', TD_THEME_NAME) . '

';
} else {

echo '<ul class="top-header-menu td_ul_login"><li class="menu-item">' . __td('Sign in / Join', TD_THEME_NAME) . '<span class="td-sp-ico-login td_sp_login_ico_style"></span>';
}
}//end login window

Modified String Structure:

Please advise how to add the correct syntax code.

4.a. Same on Serial 3.a. question.

5. Sign In/Join Mobile View using USERPRO shortcode
Filename:
Please advise where to modify it?

ShortCode to add:
Please advise the correct syntax code for this.

' . do_shortcode('[userpro template=login]') . '

Original String Structure:

Please advise where to modify it?

Modified String Structure:

Please advise how to add the correct syntax code.

5.a. Same on Serial 3.a. question.

6. FB Comments instead of WP comments
Filename:
wp-content/themes/Newspaper/header.php
wp-content/themes/Newspaper/loop-single-12.php

ShortCode to add:
header.php

<div id=”fb-root”></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=XXXXXX”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));</script>

loop-single-12.php

<div class="fb-comments" data-href="<?php echo get_permalink($td_mod_single->post->ID); ?>" data-width="100%" data-numposts="5"></div>

Original String Structure:
header.php


</head>

<body <?php body_class() ?> itemscope="itemscope" itemtype="<?php echo td_global::$http_or_https?>://schema.org/WebPage">

<?php /* scroll to top */?>
<div class="td-scroll-up"><i class="td-icon-menu-up"></i></div>

<?php locate_template('parts/menu-mobile.php', true);?>
<?php locate_template('parts/search.php', true);?>

loop-single-12.php

<?php echo $td_mod_single->get_item_scope_meta();?>
</footer>

<?php echo $td_mod_single->related_posts();?>

<?php
} else {
//no posts
echo td_page_generator::no_posts();
}

Modified String Structure: Please advise if this is the correct syntax code?
header.php


</head>

<body <?php body_class() ?> itemscope="itemscope" itemtype="<?php echo td_global::$http_or_https?>://schema.org/WebPage">

<div id=”fb-root”></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=XXXXXX”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));</script>

<?php /* scroll to top */?>
<div class="td-scroll-up"><i class="td-icon-menu-up"></i></div>

<?php locate_template('parts/menu-mobile.php', true);?>
<?php locate_template('parts/search.php', true);?>

loop-single-12.php

<?php echo $td_mod_single->get_item_scope_meta();?>
</footer>
<div class="fb-comments" data-href="<?php echo get_permalink($td_mod_single->post->ID); ?>" data-width="100%" data-numposts="5"></div>
<?php echo $td_mod_single->related_posts();?>

<?php
} else {
//no posts
echo td_page_generator::no_posts();
}

6.a. Same on Serial 3.a. question.

7. If there is a new update of the Theme like for example: header.php as we added a Custom Code on version 6.x.x has 92 Lines + 2 Lines on our Custom Code both on Main Theme and Child Theme then a new update came version 7.0 header.php has 98 Lines, since our Child Theme had originally 92 Lines, are we going to update also our Child Theme structure based on the latest one from 92 Lines to 98 Lines then + 2 Lines on our Custom code?

8. Mobile Theme Plugin – if I install this plugin would the Child Theme modification will reflect to this? I mean I made changes in Serial 3, 5 and 6 will it reflect also? Please advise.

8.a. Whats the difference between Theme Panel background color for mobile vs Mobile Theme Plugin Settings background color? Which one should I make the changes if this Plugin is installed?

8.b. Gradient color – may I ask the exact hex number of this color? Link Here

9. Am I allowed to create directory structure and add the following filename on the Child Theme incase all of the above are possible to my site.

>loop-single-12.php
>top-menu.php
>For Serial 5 filename
>header.php

I have sent my Login Credentials via mail incase you may need it with the same Subject here.

Regards

chaliachalia
Participant
#0

Hello.
How i can add facebook comments on Newsmag theme without plugins?
I tried to install it with your instruction and added this code: <div class=”fb-comments” data-href=”<?php echo get_permalink($td_mod_single->post->ID); ?>” data-width=”100%” data-numposts=”5″></div> in all loops files.

it works only when instead of this part: <?php echo get_permalink($td_mod_single->post->ID); ?> i write my website url, but in this case it shows the same comments on all posts.

Maybe i also have to add this code in single_template files? if yes please send me screenshot where exactly i need to add this code in single_template file
Thanks

Catalin
tagDiv Staff

Hello marcosrieper,

Please ensure that you are using the latest version of Social Counter (4.0) for the latest version of our theme (7.0), clear all your caches and then see how it works. Also, for good results, please try to disable all the active plugins, leave just Visual Composer to active, clear all cache and install only the plugins that come bundled with our theme and rule out the conflicting plugins.
If your problem is still there, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can further inspect your setup page. Also, provide the link of this topic so we can identify you.

Thank you for your understanding!

davidcolq
Participant
#0

Hi,

My current install is:

WordPress Version 4.5.2
Newspaper Theme version 6.6.3

Currently when I try to edit a page VC frontend editor does not display my content. I can switch to classic where it shows my data but switch back and nothing shows.

Any suggestions on how to fix this, other than upgrading to version 7 which I will attemp to try over the weekend.

Regards,
Dave

apoellin
Participant
#0

Hi,

Just installed the new version via Envato toolkit and the new Big Grids (9 to 12) and new blocks etc are not showing in Visual Editor. It shows until Big Grid 8 like previews version. I also uninstall and install again visual editor from the latest version and still new Grids etc not showing.

Any help please?
Thanks in advance

Bogdan B.
tagDiv Staff

Hi,
We are aware of this and we try to make users aware of this as well: https://forum.tagdiv.com/theme-colors-introduction/ (note at the bottom of the article)
The black version does not require a white background though. If you install the demo and leave it to default, you will see that the header and footer are full width and not boxed: http://screencast.com/t/BzhxghiHdA
You can see this on our live demo as well: http://demo.tagdiv.com/newspaper_black/
So there is no need to worry about a white background on the black demo.
Thank you!

Bogdan B.
tagDiv Staff

Hi,
I was referring to these fields: http://screencast.com/t/nIddYyc4Pdn2 . If you do not add any social id’s here, then nothing will be displayed. If you updated to newspaper 7, then please remove your current version of the social counter and install version 4.0 of the plugin from the plugins folder inside the main theme archive.
Thank you!

Catalin
tagDiv Staff

Hello fit2fash@yahoo.com,

Before you install this plugin, please ensure that you have removed the old plugin folder from your side, otherwise, you will get this error -> the file already exists and the plugin will not be install.

Hope this helps and let us know how it goes!

Thank you for your message!

Bogdan B.
tagDiv Staff

Hi,

That is a problem related with a WordPress file and it could be caused by some plugin. Try to login in your ftp account and rename the plugins folder from …/your-wp-install/wp-content/plugins then try to login again. Here you can find more details about this process: https://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F

Thanks.

Bogdan B.
tagDiv Staff

Hi,
The plugin is bundled with the theme. In the newspaper 7 folder, there is a plugins folder as well. Either install the plugin from the theme panel as I showed above or use the add new plugin from a file and select this one: http://screencast.com/t/hyXPNkOs
Thank you!

Bogdan B.
tagDiv Staff

Hi,
you need to update the plugin as well as it will not update automatically. Please disable and delete files from the wp plugins section and install the plugin from here: http://screencast.com/t/N22t4xt9
Thank you!

Bogdan B.
tagDiv Staff

Hi,
Well there are a number of settings that can be triggered by accident that can ‘break’ your site. Every user must be responsible for their own actions. However, this will not replace your database. It will only add a few posts and pages besides your own and if you uninstall it it will remove those posts, not your own from your database. I will add this to our suggestion list though and the development team will consider it for future updates. If you do not want users to have access to the theme panel, you can change their user roles from WP: https://codex.wordpress.org/Roles_and_Capabilities
Thank you!

Catalin
tagDiv Staff

Hello kosashi777,

In order to display this widget in your mobile view, please check the theme panel and ensure that this option is enabled from there, like this -> http://screencast.com/t/0sIbBtjs Also, if your problem is still there, please check your console and see if you have some js errors through it. Please try to disable all your untested plugins, leave just Visual Composer to active, clear all your caches and install only the plugins that come bundled with our theme and rule out the conflicting plugins.
For more information about this, please check our documentation here -> https://forum.tagdiv.com/login-how-to-enable-user-registration/

Hope this helps and let us know how it goes!

Thanks.

ShibumiOz
Participant
#0

Attempted to change website by using Black Demo. Demo did not install but the process has corrupted the entire website. Please advise urgently. http://pigsfly.info

Catalin
tagDiv Staff

Hello valerianidesign,

Please ensure that your latest update was loaded successfully. So, to be sure, please try to make a fresh install and update the theme only through FTP because this is the surest method to do an update. Also, after doing that, please install only the plugins that come bundled with our theme (Visual Composer 4.11.2, Social Counter 4.0). Before doing an update, please ensure that you have removed your old theme to avoid the installation errors.
For more information about theme update, please check our documentation here -> https://forum.tagdiv.com/how-to-update-the-theme-2/

Hope this helps and let us know how it goes!

Thank you for your understanding!

midronepro
Participant
#0

Hi,
I just updated to Newspaper 7 and everything worked fine. I also installed the mobile plugin, a great plugin by the way, however after few hours, i started to see mobile version on desktop using internet explorer and google chrome. also on my mobile, I started to see desktop version of homepage.
After investigation, I arrived to the conclusion that it is a caching issue.
First I paused cloudflare and kept only w3 total cache. the problem was not resolved.
Then I used user agents to passthrough but the problem is still there.

Anyone can help please.
my site is http://www.midronepro.com

Catalin
tagDiv Staff

Hello nurrohma,

After you have disabled all your untested plugins, please try to install one by one and check which is the culprit that cause this issue. Also, please notice that we have a list of our tested plugins which work as properly with our theme and which does not create issues in theme. The list with our recommended plugins you should see here -> http://screencast.com/t/USRkbVZx

Hope this helps!

Thank you for your understanding!

Andrei L.
tagDiv Member

Hi

Unfortunately this error could come from a big number of problems. I believe it happens due to a server configuration which is not responding, it could be due to a delay or it could also be a temporary issue so you can try this a few times and if you still get this error please contact your host provider and let him know about this, ask them to unblock our demo in order to retrieve the theme data. It could also happen due to your wp install or other plugins might also cause this. Also make sure that your permission for the upload folder are set correct. You can check this by trying to upload an image in media library. If the process succeeds then the permission are ok. If not you can use the c-panel to change permissions (set them to 777) or if you do not have access to the cpanel, please contact your hosting provider.
Also make sure you meet the requirements for newsmag: https://forum.tagdiv.com/newsmag-requirements-for-newsmag/ and the parameters from system status have the values indicated in our documentation: https://forum.tagdiv.com/system-status-parameters-guide/
Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and we will inspect this issue as soon as possible, also include a link to this topic.

Thanks!

threesides
tagDiv Member

Okay this is what we have done:

Visual Composer (4.11.2) – updated – uninstalled any old versions
Latest Theme (newspaper 7) – clean install
Cleared cache
removed tinyMCE
Updated to WP 4.5.2

Have pushed the site to staging to test these updates
http://sportsmansblog.staging.wpengine.com/

Also now with these updates – the TagFDiv social counter is broken.

any other ideas to get these now 2 issues fixed?

thanks

gvdk
Participant
#0

Hello.
When i upgrade Newspaper from 6.5 to 7.0 some errors had accured.
It displayed all posts, not only relatives posts by tag or category like older versions.
Please fix this.
I try re install the theme but met the same error

simchris
tagDiv Member

it’s typically been in the ‘all files’ download with tagdiv themes the past 3 years.

Is this what you’re looking for ?

==
[ Version 2.3.7]
– fix: social counter facebook issue with new API keys
– fix: security issue

[ Version 2.3.6]
– new: Visual Composer updated to latest version 4.11.2
– new: Revolution Slider updated to latest version 5.2.4.1
– fix: a jQuery syntax issue that appeared after WordPress 4.5 update

[ Version 2.3.5]
– fix: WordPress 4.4.1 homepage pagination issue

[ Version 2.3.4]
– new: visual composer was updated to the latest version 4.9
– new: revolution slider was updated to the latest version 5.1.5
– fix: modified structured data to comply with Google’s new requirements

[ Version 2.3.3]
– fix: pagination was not working on categories with big grid disabled on WordPress 4.4

==

Newsmag theme
Here is a list of all the changes between v 2.3.5 and v 2.3.6

Modified files – 5 files
includes\plugins\td-social-counter.zip
includes\wp_booster\wp-admin\panel\panel_core\td_panel_data_source.php
includes\wp_booster\wp-admin\panel\panel_core\td_panel_core.php
includes\wp_booster\wp-admin\panel\td_demo_installer.php
includes\td_config.php
style.css
New files – 0 files
Deleted files – 0 files
none

Ankush Das
tagDiv Member

If you’re having WordFence installed, try deactivating the firewall amd try again. That’s what I did.

MPL Agency
Participant
#0

Hello.

As we get the latest update of theme (Newspaper7), we also get Visual composer broken. Latest theme update did not offer latest update of Visual composer plugin to us. We have Version 4.9.2 installed and latest is: current version 4.11.2.

If we got VC in a theme, that means that theme author has license and only he/she can download latest versions of VC and include it in the theme. We as a theme user, may use Visual Composer free of charge while we use theme that came with VC (because we have license for that theme).

I assume that this is a main reason of all our problems, and i really need to know why we did not get latest update in our theme update? This is serious problem, we can not work at all till this is over.

Please try to solve this ASAP.

Thanks
MPL Agency – Serbia
http://www.americkiizbori2016.rs

Viewing 25 results - 30,076 through 30,100 (of 35,820 total)