Search Results for 'update'

Results from the Forum
Marius
tagDiv Staff

Hi,
We want to improve/add social bar in post in the following updates. But I’m not sure that will be a floating bar.

Thanks for your message!

Marius
tagDiv Staff

Hi,
We know about this issue, for us works great but is some unknown cases don’t work. We will fix it in the next update Monday, if not work for you a simple solution is to change it directly from file.

Thanks for the message!

Marius
tagDiv Staff

Hi,
We will release an update Monday, the ad should work in the next update, we imporved the inline ad, about background(using stretch could have issue with the plugin we will try to fix it)

Thanks!

Marius
tagDiv Staff

Hi, We will release the update Monday.
Thanks for the message!

Guideduchien
tagDiv Member

Hi,

Thank you Marius, i wait next update.

Thanks

Daniel Finch
tagDiv Member

It’s not really a problem I can link to but I can try making the situation a little clearer.

Currently if I change a sidebar I will have to update (save) settings on all pages and categories before the change will appear. Surely this isn’t normal?

mofiki
tagDiv Member

Thats what i’m saying, I updated the theme to version 3.0.1 and then used the plugin from the update as well. My theme version is 3.0.1 running SpeedBooster 2.0 and I am still having the following issues:

1. Header and in article ads aren’t working with Speed Booster
2. Full Background image not working with Speed Booster

madox56
tagDiv Member

Hi Marius,

We tried everything you have recommended so far – without any success. Even the update to the new version did not work out.

Other ideas: What do you think if we would only use the visual composer for the main page?
I know from some posts that Google loves the wordpress recent articles. Do you think that our page rank will be lowered then?
Best

nsisongeffiong
tagDiv Member

@marius Thank you. I’m hoping the update will come over the weekend so my site can go live soon

maxishere
tagDiv Member

Any chance of a better main menu? One you can put widgets into?

Ubermenu isn’t compatible with Newspaper and would really like a more interesting menu please!

Marius
tagDiv Staff

Hi,

@nsisongeffiong
we will release an update that have more custom ad spot that you can use it where you want.

Thanks

Marius
tagDiv Staff

Hi,

@madox56
you site is http://www.ebike-news.de/
I found an email in spam folder.

I check you site please update to latest version of the theme. Also what you can do is to disable the plugins one by one and check if works, could be from a plugin conflict, i see that you have a lot of plugins installed.

Thanks

maxishere
tagDiv Member

Can see what you’re doing there, but unfortunately it didn’t work either. It’s also a lot of playing around with the code, which isn’t good for future theme updates. I might just have to settle for imperfection here!

vorman
tagDiv Member

Many thanks for the reply Marius. I did update the code and unfortunately it get a blank white page. Please see below. Also, I am using the Home Page – with Article List. I sincerely do appreciate your help here.

<?php
/* Template Name: Homepage – bg + with article list */

get_header();

td_global::$current_template = ‘page-homepage-loop’;

global $paged, $loop_module_id, $loop_sidebar_position, $post, $more;
$td_page = (get_query_var(‘page’)) ? get_query_var(‘page’) : 1; //rewrite the global var
$td_paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; //rewrite the global var

//paged works on single pages, page – works on homepage
if ($td_paged > $td_page) {
$paged = $td_paged;
} else {
$paged = $td_page;
}

$list_custom_title_show = true; //show the article list title by default

$td_homepage_loop_filter = ”; //homepage loop filter metadata

/*
read the settings for the loop
—————————————————————————————- */
if (!empty($post->ID)) {
td_global::load_single_post($post);

//read the metadata for the post
$td_homepage_loop_filter = get_post_meta($post->ID, ‘td_homepage_loop_filter’, true); //it’s send to td_data_source
$td_homepage_loop = get_post_meta($post->ID, ‘td_homepage_loop’, true);

if (!empty($td_homepage_loop[‘td_layout’])) {
$loop_module_id = $td_homepage_loop[‘td_layout’];
}

if (!empty($td_homepage_loop[‘td_sidebar_position’])) {
$loop_sidebar_position = $td_homepage_loop[‘td_sidebar_position’];
}

if (!empty($td_homepage_loop[‘td_sidebar’])) {
td_global::$load_sidebar_from_template = $td_homepage_loop[‘td_sidebar’];
}

if (!empty($td_homepage_loop[‘list_custom_title’])) {
$td_list_custom_title = $td_homepage_loop[‘list_custom_title’];
} else {
$td_list_custom_title =__td(‘LATEST ARTICLES’);
}

if (!empty($td_homepage_loop[‘list_custom_title_show’])) {
$list_custom_title_show = false;
}

//adds the filters for templates: ‘Homepage – with article list’ and ‘Homepage – bg + article list’
//include_once(‘includes/wp_booster/td_homepage_loop_filter.php’);
}

/*
big slide
—————————————————————————————- */
locate_template(‘parts/page-homepage-slider.php’, true);

echo td_page_generator::wrap_no_row_start();

/*
the content if we have one
—————————————————————————————-
02/06/2014 – Disabled this code ITPS Trevor

if(!empty($post->post_content)) { //show this only when we have content
if (empty($paged) or $paged < 2) { //show this only on the first page

?>
<div class=”row-fluid”>
<div class=”span12 column_container” role=”complementary” itemscope=”itemscope” itemtype=”http://schema.org/WPSideBar”&gt;
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
//read the page settings
the_content();
endwhile; //end loop
}
?>
</div>
</div>
<?php

}
}

*/

/*
the main fake loop
—————————————————————————————- */

$more = 0; // fix read more

echo ‘<div class=”row-fluid”>’;

/*
//do the loop
$queryPost = Array(
‘posts_per_page’ => get_option(‘posts_per_page’),
‘paged’ => $paged
);

//hide featured categories
if ($td_featured_posts != ‘show_featured_posts’) {
$queryPost[‘cat’] = ‘-‘ .get_cat_ID(TD_FEATURED_CAT);
}
*/

switch ($loop_sidebar_position) {

case ‘sidebar_left’:
?>
<div class=”span4 column_container”>
<?php get_sidebar(); ?>
</div>
<div class=”span8 column_container”>
<?php if ((empty($paged) or $paged < 2) and $list_custom_title_show === true) { ?>
<h4 class=”block-title”><span><?php echo $td_list_custom_title?></span></h4>
<?php }

query_posts(td_data_source::metabox_to_args($td_homepage_loop_filter, $paged));
get_template_part(‘loop’, ‘simple’);
echo td_page_generator::get_pagination();
?>
</div>
<?php
break;

case ‘no_sidebar’:
?>
<div class=”span12 column_container”>
<?php if ((empty($paged) or $paged < 2) and $list_custom_title_show === true) { ?>
<h4 class=”block-title”><span><?php echo $td_list_custom_title?></span></h4>
<?php }

query_posts(td_data_source::metabox_to_args($td_homepage_loop_filter, $paged));
get_template_part(‘loop’, ‘simple’);
echo td_page_generator::get_pagination();
?>
</div>
<?php
break;

//sidebar right
default:
?>
<div class=”span8 column_container”>
<?php if ((empty($paged) or $paged < 2) and $list_custom_title_show === true) { ?>
<h4 class=”block-title”><span><?php echo $td_list_custom_title?></span></h4>
<?php }

query_posts(td_data_source::metabox_to_args($td_homepage_loop_filter, $paged));
get_template_part(‘loop’, ‘simple’);
echo td_page_generator::get_pagination();
?>
</div>
<div class=”span4 column_container”>
<?php get_sidebar(); ?>
</div>
<?php
break;
}

wp_reset_query();
if(!empty($post->post_content)) { //show this only when we have content
if (empty($paged) or $paged < 2) { //show this only on the first page
?>
<div class="row-fluid">
<div class="span12 column_container" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"&gt;
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
//read the page settings
the_content();
endwhile; //end loop
}
?>
</div>
</div>
<?php
}
}

echo ‘</div>’; //close the .row
echo td_page_generator::wrap_no_row_end();

get_footer();
?>

Radu
tagDiv Staff

Hi,

I’ve looked at the site and I think that the booster plugin is not working as expected. The resources seem to come from cdn.your domain .Are you using mod pagespeed or some kind of cdn optimizer?

I will try to test the WPSocialite + speedbooster and if it works well we will update the plugin.

PS. Marius is making the stars now for you now – sorry for the delay.


@Christopher
– I agree with you, any social sharing badge that shows the number of likes/tweets etc comes with a cost :). There is one solution – to call the like tweets via api on server (like our social counter does) but like the social counter is very hard to maintain and it will have to make server side requests to the apis periodically for each post… that is not good. It’s almost impossible to deploy such such a thing to a lot of users and hosts combinations but I will experiment a bit with this 🙂 .

Radu O.

Marius
tagDiv Staff

Hello,
Will be available in few days.

Also the default sizes are defined here if you want to change it manually: http://screencast.com/t/zHleK019
Thanks for the message!

fagelskadaren
Participant
#0

I updated to 3.0 and then uploaded the files from the folder patch 3.0.1. Now I can’t access the theme panel, it just looks like this (http://www.flickr.com/photos/74534825@N07/12339357815/)

Marius
tagDiv Staff

Hello,
You need to update the theme to 3.0.1 not only to use the plugin from there.

Please make sure you have latest theme version.

startek
tagDiv Member

Hi
Custom ad size- good. When wait theme update ?
Regards

Marius
tagDiv Staff

Hi,
We will release the update only Monday! in 10-11 Feb. We want to add more features in the update.

Stefan
tagDiv Member

For me this was a problem before the update. Lucky I dont need to use the Revo Slider

Radu
tagDiv Staff

Hello,

please enable the crop featured image option and after that you have to rebuild the thumbnails. Only new images that are uploaded are cropped. I will update the documentation to better explain this.

Radu
tagDiv Staff

I updated the docs and it will show up in search, it’s a known issue https://forum.tagdiv.com/how-to-disableactivate-visual-editor/

keywords: visual composer not working issue problem visual editor

Hope everything is ok now,
Radu O.

Radu
tagDiv Staff

Hi,

@tcdraper
thanks for answering. I prepared a guide for migration: https://forum.tagdiv.com/how-to-update-newspaper-from-v2-to-v3/ see last item.

Hope it helps,
Radu O.

Radu
tagDiv Staff

V 3.0.1 is out for some time now yes.

We are working to fix all the remaining issues, especially the custom ad size support and to finally fix our speed booster plugin for good with ad sense.

Stay tuned 🙂

Viewing 25 results - 44,676 through 44,700 (of 45,280 total)