Search Results for 'install'

Results from the Forum
Calin
tagDiv Staff

Hi,

That happen because you have install the mobile theme plugin, if you want to have the layout of your desktop please deactivate the mobile theme plugin -> https://www.screencast.com/t/KqeMPMQKeSlG

Thank you!

Demo
Participant
FacetWP - topic
#0

Hello!

I installed the FacetWP plugin, because I need to use advanced search filters. But the plugin does not display anything. I called FacetWP assistance and they put this back to me:
“Facet is not able to determine on that page what query results output you are targeting to filter. Try adding facetwp-template class to the module that contains the query results.”
How can I do to add this class?

Thanks!

ML
Participant
#0

Hey guys,

I updated today 5 websites from 9.7.2 to 9.7.3.

All the menus and sidebars were broken on all websites.
I’m using cloud template for posts and header.
All websites have WP up to date.

> I updated and activated all plugins. Same problem.
> I deleted tagdiv plugins (td composer and cloud) and reinstalled. Same problem.

I had to restore all websites because all websites are live, so I can’t show you the issue on a live website.

Any idea where to look ? what to do ?
Never had this issue in the past.

Thanks for your help.

Vlad S
tagDiv Staff

Hello !

Please try installing a demo from here: https://tagdiv.com/newspaper-theme-installing-demos/ and if you have post on you page you can install the demo without content. So the demo will apply to your posts.

Let me know if the composer appears after that.

Thank you !

Vlad S
tagDiv Staff

Hello !

All of google’s header ads are sticky, on your site too as you can see here: https://www.screencast.com/t/kyqilIDeWCa

Make sure to clear your cache after each change because that may be the problem. We do recommend using WP Super Cache: https://tagdiv.com/wp-super-cache-plugin-install-and-configure/

I hope this was helpfull !

Thank you !

Catalin
tagDiv Staff

Hi,

Please note that child theme is not mandatory to be used in our theme. Most of the theme files were moved into the tagDiv Composer plugin as per the requirements of Envato: https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements. We wrote an article on the subject here: https://tagdiv.com/updating-the-core-of-tagdiv-themes/ Moving forward with such requirements, a child theme will only work with functions.php, and style.css, as there are very few files left in the main theme as Envato, requires all functionality to be added through plugins. For more information about installing the theme, please check here -> https://forum.tagdiv.com/install-via-ftp/ Also, for more information about child theme, please check here -> https://developer.wordpress.org/themes/advanced-topics/child-themes/

Thank you!

Catalin
tagDiv Staff

Hi,

Please send us an email at contact@tagdiv.com with your log-in information (wp-admin) and CPanel access so we can take a closer look at your set up configuratio page and also, so I can install the correct version of WPBackery. Please provide there the link of this topic so we can quickly identify you.

Thank you!

gmpaus
Participant
#0

Hi,

I came across Error at zones: 5(models) : 0(dom) every time I edit a webpage with Tagdiv Composer. The only plugin i install is Indeed Ultimate Membership Pro and I have deactivate it. The rest of the plugins are come with the themes which I installed and activate.

I need urgent help and support on this error cause I could not update any webpages for my tight deadline project. I appreciate your help and support to resolve the error I encountered as soon as you possibly can. Many thanks.

Regards,
Danny

ivan130
Participant
#0

Hello! Good day.

I do not see tagDiv Composer, I installed, activated, deactivated, and I can not find the option to edit my site with the plugin.
I do not see it when creating a post / page; or in the WordPress administrator bar.

Sorry for my English,
Greetings from Argentina.

acionista
Participant
#0

Hello, when I bought the layout I saw that in the mobile version the site was as in image 1. However, when I install the complete demo on my site it appears in image 2.

Why this difference? I liked how it is in image 1 (same as what I bought).

IMAGE 1: envato

IMAGE 2 (IN MY DOMAIN):

topclimb
tagDiv Member

Hi Rene,

Happy to help if I can. Here are my php.ini and WordPress/Plugins settings:

1. PHP version 7.2.17
2. post_max_size 128M
3. max_execution_time 600
4. max_input_vars 5000
—————————–
5. WP Memory limit 256 MB/request
6. WP_DEBUG False
7. WP version 5.2.2

The additional things I did were:
1. Had my hosting provider clear the cache and check my firewall
2. Made sure the SSL was functioning properly
3. cleared the WP super cache plugin (I actually uninstalled/reinstalled).

I hope this helps. If not let me know and I will brainstorm on it some more with you.

Have a great day!

Robert

garyjones
Participant
#0

Hi,

I have Newspaper 9.7.2 installed and have tried to follow this, https://forum.tagdiv.com/practical-example-how-to-add-a-new-block-and-module/ to create a new version of block 9 in which I have custom code (for the purposes of the learning exercise i have called it block and module 77 as per the exercise).

The php for the shortcode is,

<?php

class td_block_77 extends td_block {

static function cssMedia( $res_ctx ) {

// fonts
$res_ctx->load_font_settings( ‘f_header’ );
$res_ctx->load_font_settings( ‘f_ajax’ );
$res_ctx->load_font_settings( ‘f_more’ );

// module 77 fonts
$res_ctx->load_font_settings( ‘m77f_title’ );
$res_ctx->load_font_settings( ‘m77f_cat’ );
$res_ctx->load_font_settings( ‘m77f_meta’ );

}

public function get_custom_css() {
// $unique_block_class – the unique class that is on the block. use this to target the specific instance via css
$unique_block_class = $this->block_uid . ‘_rand’;

$compiled_css = ”;

$raw_css =
“<style>

/* @f_header */
.$unique_block_class .td-block-title a,
.$unique_block_class .td-block-title span {
@f_header
}
/* @f_ajax */
.$unique_block_class .td-subcat-list a,
.$unique_block_class .td-subcat-dropdown span,
.$unique_block_class .td-subcat-dropdown a {
@f_ajax
}
/* @f_more */
.$unique_block_class .td-load-more-wrap a {
@f_more
}
/* @m77f_title */
.$unique_block_class .td_module_77 .entry-title {
@m77f_title
}
/* @m77f_cat */
.$unique_block_class .td_module_77 .td-post-category {
@m77f_cat
}
/* @m77f_meta */
.$unique_block_class .td_module_77 .td-module-meta-info,
.$unique_block_class .td_module_7 7.td-module-comments a {
@m77f_meta
}
</style>”;

$td_css_res_compiler = new td_css_res_compiler( $raw_css );
$td_css_res_compiler->load_settings( __CLASS__ . ‘::cssMedia’, $this->get_all_atts() );

$compiled_css .= $td_css_res_compiler->compile_css();

return $compiled_css;
}

function render($atts, $content = null) {

parent::render($atts); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)

if (empty($td_column_number)) {
$td_column_number = td_global::vc_get_column_number(); // get the column width of the block from the page builder API
}

$buffy = ”; //output buffer

$buffy .= ‘<div class=”‘ . $this->get_block_classes() . ‘ td-column-‘ . $td_column_number . ‘ td_block_padding td_block_bot_line” ‘ . $this->get_block_html_atts() . ‘>’;

//get the block js
$buffy .= $this->get_block_css();

//get the js for this block
$buffy .= $this->get_block_js();

// block title wrap
$buffy .= ‘<div class=”td-block-title-wrap”>’;
$buffy .= $this->get_block_title(); //get the block title
$buffy .= $this->get_pull_down_filter(); //get the sub category filter for this block
$buffy .= ‘</div>’;

$buffy .= ‘<div id=’ . $this->block_uid . ‘ class=”td_block_inner”>’;
$buffy .= $this->inner($this->td_query->posts); //inner content of the block
$buffy .= ‘</div>’;

//get the ajax pagination for this block
$buffy .= $this->get_block_pagination();
$buffy .= ‘</div> <!– ./block –>’;
return $buffy;
}

function inner($posts, $td_column_number = ”) {

$buffy = ”;

$td_block_layout = new td_block_layout();
if (empty($td_column_number)) {
$td_column_number = td_global::vc_get_column_number(); // get the column width of the block from the page builder API
}

$td_post_count = 0; // the number of posts rendered
$td_current_column = 1; //the current column

if (!empty($posts)) {
foreach ($posts as $post) {
$td_module_77 = new td_module_77($post, $this->get_all_atts());

switch ($td_column_number) {

case ‘1’: //one column layout
$buffy .= $td_block_layout->open12(); //added in 010 theme – span 12 doesn’t use rows
$buffy .= $td_module_77->render($post);
$buffy .= $td_block_layout->close12();
break;

case ‘2’: //two column layout
$buffy .= $td_block_layout->open_row();

$buffy .= $td_block_layout->open6(); //added in 010 theme – span 12 doesn’t use rows
$buffy .= $td_module_77->render($post);
$buffy .= $td_block_layout->close6();

if ($td_current_column == 2) {
$buffy .= $td_block_layout->close_row();
}
break;

case ‘3’: //three column layout
$buffy .= $td_block_layout->open_row();

$buffy .= $td_block_layout->open4();
$buffy .= $td_module_777->render($post);
$buffy .= $td_block_layout->close4();

if ($td_current_column == 3) {
$buffy .= $td_block_layout->close_row();
}
break;
}

//current column
if ($td_current_column == $td_column_number) {
$td_current_column = 1;
} else {
$td_current_column++;
}

$td_post_count++;
}
}
$buffy .= $td_block_layout->close_all_tags();
return $buffy;
}
}

And the php for the module is,

<?php

class td_module_77 extends td_module {

function __construct($post, $module_atts = array()) {
//run the parrent constructor
parent::__construct($post, $module_atts);
}

function render() {
ob_start();
$title_length = $this->get_shortcode_att(‘m77_tl’);
$modified_date = $this->get_shortcode_att(‘show_modified_date’);
///print_r($this->post->ID);
$choosen_post_functionality = get_field( “choose_post_functionality”, $this->post->ID );
// For Element One
$title_lo = get_field( “title_lo”, $this->post->ID );
$title_link_lo = get_field( “title_link_lo”, $this->post->ID );
$media_name_lo = get_field( “media_name_lo”, $this->post->ID );
$media_link_lo = get_field( “media_link_lo”, $this->post->ID );
$publish_date_lo = get_field( “publish_date_lo”, $this->post->ID );
//$abstract_excerpt_lo = get_field( “abstract_excerpt_lo”, $this->post->ID );
$abstract_excerpt = get_post_field(‘post_content’, $this->post->ID);

// For Element Two
$title_lt = get_field( “title_lt”, $this->post->ID );
$title_link_lt = get_field( “title_link_lt”, $this->post->ID );
$author_name_lt = get_field( “author_name_lt”, $this->post->ID );
$media_name_lt = get_field( “media_name_lt”, $this->post->ID );
$publish_date_lt = get_field( “publish_date_lt”, $this->post->ID );
$citations_title_lt = get_field( “citations_title_lt”, $this->post->ID );
$citations_link_lt = get_field( “citations_link_lt”, $this->post->ID );
//$abstract_excerpt_lt = get_field( “abstract_excerpt_lt”, $this->post->ID );

?>

<div class=”<?php echo $this->get_module_classes();?>”>
<?php if($choosen_post_functionality == “ext_lo_one”) { ?>
<div class=”item-details”>
<?php //echo $this->get_title($title_length);?>
<h3 class=”entry-title td-module-title”>” rel=”bookmark” title=”<?php echo get_the_title( $this->post->ID );//$title_lo; ?>”><?php echo get_the_title( $this->post->ID ); //$title_lo; ?></h3>
<div class=”td-module-meta-info”>
<?php //if (td_util::get_option(‘tds_category_module_77’) == ‘yes’) { echo $this->get_category(); }?>
<?php //echo $this->get_author();?>
<div class=”media_date” style=”margin-top:5px;”>
<span class=”td-post-author-name”>“><?php echo $media_name_lo; ?> <span>-</span> </span>
<?php //echo $this->get_date($modified_date);?>
<span class=”td-post-date”><time class=”entry-date updated td-module-date”><?php echo $publish_date_lo; ?></time></span>
</div>
<div class=”td-post-content” style=” margin-top: 5px; padding: 0; “><?php echo $abstract_excerpt; //$abstract_excerpt_lo; ?> </div>
<?php //echo $this->get_comments();?>
</div>
</div>
<?php } elseif($choosen_post_functionality == “ext_lo_two”) { ?>
<div class=”item-details”>
<?php //echo $this->get_title($title_length);?>
<h3 class=”entry-title td-module-title”>” rel=”bookmark” title=”<?php echo get_the_title( $this->post->ID ); ?>”><?php echo get_the_title( $this->post->ID ); ?></h3>
<div class=”td-module-meta-info”>
<?php //if (td_util::get_option(‘tds_category_module_77’) == ‘yes’) { echo $this->get_category(); }?>
<?php //echo $this->get_author();?>
<div style=”margin-top: 5px;”>
<span class=”td-post-author-name”><?php echo $author_name_lt; ?> </span>
</div>
<div class=”media_date” style=”margin-top:5px;”>
<span class=”td-post-author-name”><?php echo $media_name_lt; ?> </span>
<?php //echo $this->get_date($modified_date);?>
<span class=”td-post-date”><time class=”entry-date updated td-module-date”><?php echo $publish_date_lt; ?></time></span>
</div>
<span style=” display: block; margin-top:5px;” class=”td-post-author-name”>“><?php echo $citations_title_lt; ?> </span>
<div class=”td-post-content” style=” margin-top:5px; padding: 0;”><?php echo $abstract_excerpt; ?> </div>
<?php //echo $this->get_comments();?>
</div>
</div>
<?php }else { ?>
<div class=”item-details”>
<?php echo $this->get_title($title_length);?>
<div class=”td-module-meta-info”>
<?php if (td_util::get_option(‘tds_category_module_77’) == ‘yes’) { echo $this->get_category(); }?>
<?php echo $this->get_author();?>
<?php echo $this->get_date($modified_date);?>
<?php echo $this->get_comments();?>
</div>
</div>
<?php } ?>

<?php echo $this->get_quotes_on_blocks();?>

</div>

<?php return ob_get_clean();
}
}

I have set up the folders as per the tutorial but am not sure where to pull the two CSS files needed that set out the style for Block 9.

NOTE: I also wish to create custom block versions for the Flex Blocks.

Please can you advise as to where these are located and if any additional considerations need to be made in view of the Envato-required changes.

Finally, another question. Given the change to follow Envato rules when I come to update to a new release version will this overwrite any custom blocks?

Thanks.

Best

Gary

Support Account
Participant
#0

Under Appearance > Install Plugins > Install Required Plugins. It is showing Official AMP for WP plugin, do we need this?

wpsun
Participant
#0

Hello!

How can I install a child theme for Newspaper theme? I saw that there is a folder Newspaper child.
What should I do, could you please tell me the steps?
Should I first install the theme? And where and how to proceed with the child theme installation?
Thank you.

slynncwd
Participant
#0

Hi there,

the following demo is running on a website that I am currently building:
https://demo.tagdiv.com/newspaper_craft_ideas/

When trying to update the theme from 9.7.2 to 9.7.3 the site completely collapses and I have to restore it from backup. I already tried to disable and enable the installed plugins but it does not help to resolve the problem. I am just before launching the website and would appreciate of you could have a look at it.

Thanks in advance,

Vlad S
tagDiv Staff

Hello !

Please make sure that this is not a plugin conflict. Disable all non theme related plugins and clear your cache. For cache we do recommend using WP Super Cache. Find out more about it here: https://tagdiv.com/wp-super-cache-plugin-install-and-configure/

Let me know if this fixed your issue!

Thank you !

Simion C.
tagDiv Staff

Hi,

Don’t know if we can add a new option there, I believe only Envato can do this if they want to. One of the options is to download the full theme package, the other is to download just the theme (this includes the updated theme plugins).

So if you download and install this package – http://prntscr.com/obyzbg it will include the theme plugins, which you can simply update from the theme plugin panel
http://prntscr.com/obz03b

If you have more questions, let us know.
Thanks

moneysavvy
Participant
#0

Hello,

I just downloaded and installed this theme onto wordpress. I followed all of the instructions but it will not update the composer, cloud library, or social counter. I have deleted it and reinstalled it through the newspaper theme plugin section as well as attempted to install and update from the newpaper theme one click and still nothing.

Konzertfotos
Participant
#0

Hi there, since a few months the Instagram footer line to preview latest posts stopped working under FIREFOX browser. Images are shown as broken, but links still working. I am having this issue on two websites (different domains and servers) since the last wordpress update. Never touched the settings since I installed the Newspaper Theme around March 2019 – Please check https://Konzertfotos.app – any idea how to solve it? Thanks in advance.

comopsyko
Participant
#0

Hello, im experiencing issues on my server for exceeding the memory limit (503 error). This started to happening when I installed the theme on my site. Can you help me to valide if its an issue from the theme. The issue is intermittent.

http://beta.claudiapalacios.net/

Thank for your help. Let me know if need something else or mor information about my site.
The server is a shared one from godaddy with 512MB of RAM.

etinos
Participant
#0

Hi, my loading speed is really slow, even after installing optimization plugins, and i have not even added posts yet:
https://gtmetrix.com/reports/artisanmarket.org/9BZczMeB
https://www.webpagetest.org/result/190707_8B_f3b58b208535f9d431132d54699397f6/

What could be the reason?

Im using the Godaddy WordPress hosting Pro 5+.

svitlana
tagDiv Member

Hello,

Thank you for your reply. I have tried everything you said and it ended up with the update released of one of the plugins that I use (Private Content). After I installed this update everything became fine again.

Thanks again,
Svitlana

etinos
Participant
#0

Hi, i have added a list of categories to the main domain, with TD composer, i have also installed the “Ultimate Category Excluder” to hide some categories from displaying, but it looks like its not working with this theme, how i can hide some categories?

Modart Pc
Participant
#0

Hello dear friend.
After installing the theme, I reinstalled the images to resize them.
But when I uploaded the images to the media file, I noticed this problem.
Pictures are loading in their original size. However, it is sized at an extra1280x720 pixel resolution.
That’s why there are 2 images in each media file. And the name of the image it creates is called “maxresdefault”.

I use image compression for a fee. And that’s working my quota.

What is the reason of this? Is this necessary? And how do I turn it off?
Please help me with this.

Maxresdefault
media file problem

I’m sending you a picture again.
note: My English is bad. I am use google translation sorry 🙁

https://ibb.co/g3SBv62
https://ibb.co/z8YNp2m
https://ibb.co/9NgvkD8

burnling
Participant
#0

When I installed this plugin, my website died
Help me

Viewing 25 results - 14,976 through 15,000 (of 35,820 total)