- NewsmagMore articles box
- NewsmagAuthor card
- NewsmagGeneral settings
All attachments are closed! but; HCARD seems connected to the author box. Could it be for this reason? or hentry is an important position for google? if not … no need
Hi,
The author can be enabled in blocks/modules here
– https://www.screencast.com/t/sAP8SEAlx6L
For the post page and author box here – https://www.screencast.com/t/2Th20ub0
Without displaying these the website visitors would have no way of reaching the author page.
The redirection issue happens in most cases if the author archives are disabled in the Yoast settings here
– https://www.screencast.com/t/wRDIQDWeLEl
Please check if that is the case.
The code you mention is required by Google to be available in the post pages. If not loaded you will have structured data errors
– https://kb.yoast.com/kb/fixing-hcard-author-error/
The theme loads all the necessary structured data by default.
Thanks
Hi,
How would I access the author page, except looking through the page source? You seem to removed author name for blocks and also from the post pages, there are no author boxes as well.
Do you use the Yoast SEO plugin or a SEO plugin with author archive settings?
Update: I tried a single post template and it worked. The ones I couldn’t get to show up in the post template selection screen were:
– Author Template 9
– Blank – Author Template
When editing those two templates, some of the modules were not working either (e.g. There was no box to edit a title, content).
Hello terrya,
You should use a category template from our Cloud Library and customize it yourself using the TD Composer and add the Author box, like this -> https://www.screencast.com/t/wOJ3a0s32
Thanks for the message!
Системные требования проверили?
https://forum.tagdiv.com/system-status-parameters-guide/
Похоже тупо на нехватку памяти в настройках ВопрдПресса.
Тут схожая проблема: https://forum.tagdiv.com/topic/author-box-on-top-of-the-article/#post-244700
И тут: https://forum.tagdiv.com/topic/tagdiv-cloud-library-causes-error-500/
Если не поможет, опишите вкратце ваши шаги по-аглийски и ждите официального ответа от разработчиков в понедельник.
В принципе, если библиотека с шаблонами не нужна, временно отключите плагин tagDiv Cloud Library и можете продолжать работу с сайтом.
Hello, i am having a big problem trying to activate my Newspaper 8 theme. Every other theme works perfectly after activation. However, I do like Newspaper 8, and I intend to keep it, but something must be wrong with the script. I’ve tried for the last week trying to fix the Activation problem. However, the theme did work for about two day, then suddenly i kept getting errors.
Here are the details of my Purchase.
Item Purchase Code:
xxxx
Purchase Date:
2018-07-21 21:42:45 UTC
For any queries related to this document or license
please contact Help Team via
https://help.author.envato.com
Envato Pty. Ltd. (ABN 11 119 159 741)
PO Box 16122, Collins Street West, VIC 8007,
Australia
==== THIS IS NOT A TAX RECEIPT OR
INVOICE ====
CONTACT:
https://studiosupport.envato.com/hc/en-us/requests/new
Ownership of pages and posts is a part of WordPress, not the theme.
This is why best practices is to have a ‘superadmin’ account for building the site code; then a main admin who creates pages.
So ‘superadmin’ account is ‘admin’ (which should never be admin, and should be something like superjoeadmin.
The pages are then built/owned by another account like ‘joeadmin’ … who is not the superadmin.
You then ‘show’ the author box on the edit page for your ‘pages’ including home page, and then change the ‘author’ to the second level user, not the superadmin.
UPSHOT:
*site manaagement = superadminaccount
*page managemennt = adminaccount /editoraccount
Summary of Roles
Super Admin – somebody with access to the site network administration features and all other features. See the Create a Network article.
Administrator (slug: ‘administrator’) – somebody who has access to all the administration features within a single site.
Editor (slug: ‘editor’) – somebody who can publish and manage posts including the posts of other users.
Author (slug: ‘author’) – somebody who can publish and manage their own posts.
Contributor (slug: ‘contributor’) – somebody who can write and manage their own posts but cannot publish them.
Subscriber (slug: ‘subscriber’) – somebody who can only manage their profile.
This is an old issue of the past decade with WordPress.
Also, the need to implement the api is still there.
We have painstakingly created a custom “alphabetical letter” taxonomy to display all posts on one page using a keyword, all posts that have keyword A on page A etc etc.
However since we can not select a custom taxonomy on the tagdiv composer when filtering posts (only categories are allowed) we are stuck.
We have implemented this text into the plugin, which gets us the ARTICLE DISPLAY VIEW icons on the theme panel. however when we select them the page reverts back to the default. could you point us in the right direction please ?
<?php
/*
Plugin Name: td-api-plugin
Plugin URI: http://tagdiv.com
Description: tagDiv API plugin
Author: tagDiv
Version: 1.0
Author URI: http://tagdiv.com
*/
class td_api_plugin {
var $plugin_url = '';
var $plugin_path = '';
var $root = '';
function __construct()
{
$this->root = get_site_url();
$this->plugin_url = plugins_url('', __FILE__); // path used for elements like images, css, etc which are available on end user
$this->plugin_path = dirname(__FILE__); // used for internal (server side) files
add_action('td_global_after', array($this, 'hook_td_global_after')); // hook used to add or modify items via Api
}
function hook_td_global_after() {
//Add new modules
td_api_module::add('td_module_20',
array(
'file' => $this->root . "/wp-content/themes/newspaper-child/includes/modules/td_module_20.php",
'text' => 'Module 20',
'img' => $this->root . '/wp-content/themes/newspaper-child/images/panel/modules/td_module_20.png',
'used_on_blocks' => array('td_block_25'),
'excerpt_title' => 30,
'excerpt_content' => 50,
'enabled_on_more_articles_box' => false,
'enabled_on_loops' => true,
'uses_columns' => true, // if the module uses columns on the page template + loop
'category_label' => true,
'class' => 'td_module_wrap td-animation-stack',
'group' => '' // '' - main theme, 'mob' - mobile theme, 'woo' - woo theme
)
);
td_api_module::add('td_module_21',
array(
'file' => $this->root . "/wp-content/themes/newspaper-child/includes/modules/td_module_21.php",
'text' => 'Module 21',
'img' => $this->root . '/wp-content/themes/newspaper-child/images/panel/modules/td_module_21.png',
'used_on_blocks' => array('td_block_21'),
'excerpt_title' => 15,
'excerpt_content' => '',
'enabled_on_more_articles_box' => true,
'enabled_on_loops' => true,
'uses_columns' => true, // if the module uses columns on the page template + loop
'category_label' => true,
'class' => 'td_module_wrap',
'group' => '' // '' - main theme, 'mob' - mobile theme, 'woo' - woo theme
)
);
}
}
new td_api_plugin();
the text in module 20 for instance looks like this:
<?php
class td_module_20 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('m20_tl');
?>
<div class="<?php echo $this->get_module_classes();?>">
<div class="td-module-image">
<?php echo $this->get_image('td_150x150');?>
<?php if (td_util::get_option('tds_category_module_20') == 'yes') { echo $this->get_category(); }?>
</div>
<?php echo $this->get_title($title_length);?>
<div class="td-module-meta-info">
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
<?php echo $this->get_comments();?>
</div>
<?php echo $this->get_quotes_on_blocks();?>
</div>
<?php return ob_get_clean();
}
}
We have created pages for each letter which each run their specific post template, which looks like this:
<?php
/*
Template Name: archief albumrecensie a
*/
get_header();
//set the template id, used to get the template specific settings
$template_id = 'archive';
//prepare the loop variables
global $loop_module_id, $loop_sidebar_position, $part_cur_auth_obj;
$loop_module_id = td_util::get_option('tds_' . $template_id . '_page_layout', 1); //module 1 is default
$loop_sidebar_position = td_util::get_option('tds_' . $template_id . '_sidebar_pos'); //sidebar right is default (empty)
// sidebar position used to align the breadcrumb on sidebar left + sidebar first on mobile issue
$td_sidebar_position = '';
if($loop_sidebar_position == 'sidebar_left') {
$td_sidebar_position = 'td-sidebar-left';
}
//read the current author object - used by here in title and by /parts/author-header.php
$part_cur_auth_obj = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
//prepare the archives page title
{
$td_archive_title = get_the_title();
}
?>
<div class="td-main-content-wrap td-container-wrap">
<div class="td-container <?php echo $td_sidebar_position; ?>">
<div class="td-crumb-container">
<?php echo td_page_generator::get_archive_breadcrumbs(); // get the breadcrumbs - /includes/wp_booster/td_page_generator.php ?>
</div>
<div class="td-pb-row">
<?php
switch ($loop_sidebar_position) {
default:
?>
<div class="td-pb-span8 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $td_archive_title; ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies-a.php', true);?>
<?php echo td_page_generator::get_pagination(); // get the pagination - /includes/wp_booster/td_page_generator.php ?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'sidebar_left':
?>
<div class="td-pb-span8 td-main-content <?php echo $td_sidebar_position; ?>-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $td_archive_title; ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies-a.php', true);?>
<?php echo td_page_generator::get_pagination(); // get the pagination - /includes/wp_booster/td_page_generator.php ?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'no_sidebar':
?>
<div class="td-pb-span12 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $td_archive_title; ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies-a.php', true);?>
<?php echo td_page_generator::get_pagination(); // get the pagination - /includes/wp_booster/td_page_generator.php ?>
</div>
</div>
<?php
break;
}
?>
</div> <!-- /.td-pb-row -->
<div class="archiefmenutitel"></br></br><h1 class="entry-title td-page-title">ARCHIEF</h1></div>
<div class="albumrecensiesabc">
<?php wp_nav_menu( array( 'theme_location' => 'albumrecensiesabc' ) ); ?>
</div>
</div> <!-- /.td-container -->
</div> <!-- /.td-main-content-wrap -->
<?php
get_footer();
and finally the loop it uses
<?php
/**
* If you are looking for the loop that's handling the single post page (single.php), check out loop-single.php
**/
// $global_flag_to_hide_no_post_to_display - comes from page-category-big-grid.php and is a flag to hide the 'No posts to display' message if on category page there are between 1 and 5 posts
global $loop_module_id, $loop_sidebar_position, $global_flag_to_hide_no_post_to_display;
///if we are in wordpress loop; used by quotes in blocks to check if the blocks are displayed in blocks or in loop
td_global::$is_wordpress_loop = true;
$td_template_layout = new td_template_layout($loop_sidebar_position);
if (empty($loop_module_id)) { //not sure if we need a default here
$loop_module_id = 1;
}
$td_module_class = td_api_module::_helper_get_module_class_from_loop_id($loop_module_id);
//disable the grid for some of the modules
$td_module = td_api_module::get_by_id($td_module_class);
if ($td_module['uses_columns'] === false) {
$td_template_layout->disable_output();
}
$args = array(
'post_type' => 'post',
'posts_per_page' => '-1',
'meta_key' => 'keyword',
'orderby' => 'meta_value',
'order' => 'ASC',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'alphabetical_letter',
'field' => 'term_id',
'terms' => array( '441' ), //this is by slug
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'muziek-recensies' ), //this is by id
),
),
);
// The Query
query_posts( $args );
// The Loop
if (have_posts()) {
while ( have_posts() ) : the_post();
echo $td_template_layout->layout_open_element();
if (class_exists($td_module_class)) {
$td_mod = new $td_module_class($post);
echo $td_mod->render();
} else {
td_util::error(__FILE__, 'Missing module: ' . $td_module_class);
}
echo $td_template_layout->layout_close_element();
$td_template_layout->layout_next();
endwhile; //end loop
echo $td_template_layout->close_all_tags();
} else {
/**
* no posts to display. This function generates the __td('No posts to display').
* the text can be overwritten by the themplate using the global @see td_global::$custom_no_posts_message
*/
echo td_page_generator::no_posts();
}
all of this was working fine since all of the code was directly implemented in the td config php file, which gets overwritten when you update the theme. all I thought I would have to do is implement the said code in the plugin api but clearly this isn’t how it should be done. I’m fearful that weeks of work on this alphabetical archive have been for nought…
-
This reply was modified 8 years by
NickDeBaerdemaeker.
Hello,
I had made two custom modules, editing the td config file directly. Upon updating the theme I quickly found out I should have used the theme api plugin to avoid having everything erased. However I can’t get it to work.
I followed the tutorial offered on the site, creating the td-api-plugin folder and php file.
The php file includes following text, do I need to alter the $this->plugin_url and $this->plugin_path ?
If so how would I need to do this.
I am working with a newspaper-child theme and the address of the site is currently v2.enola.be,
which will change in the future to http://www.enola.be so I want to be prepared for that too.
thanks for your kind assistance
Nick
<?php
/*
Plugin Name: td-api-plugin
Plugin URI: http://tagdiv.com
Description: tagDiv API plugin
Author: tagDiv
Version: 1.0
Author URI: http://tagdiv.com
*/
class td_api_plugin {
var $plugin_url = '';
var $plugin_path = '';
function __construct()
{
$this->plugin_url = plugins_url('', __FILE__); // path used for elements like images, css, etc which are available on end user
$this->plugin_path = dirname(__FILE__); // used for internal (server side) files
add_action('td_global_after', array($this, 'hook_td_global_after')); // hook used to add or modify items via Api
}
function hook_td_global_after() {
//Add new modules
td_api_module::add('td_module_20',
array(
'file' => $this->plugin_path . "/includes/modules/td_module_20.php",
'text' => 'Module 20',
'img' => $this->plugin_url . '/images/panel/modules/td_module_20.png',
'used_on_blocks' => array('td_block_25'),
'excerpt_title' => 30,
'excerpt_content' => 50,
'enabled_on_more_articles_box' => false,
'enabled_on_loops' => true,
'uses_columns' => true, // if the module uses columns on the page template + loop
'category_label' => true,
'class' => 'td_module_wrap td-animation-stack',
'group' => '' // '' - main theme, 'mob' - mobile theme, 'woo' - woo theme
)
);
td_api_module::add('td_module_21',
array(
'file' => $this->plugin_path . "/includes/modules/td_module_21.php",
'text' => 'Module 21',
'img' => $this->plugin_url . '/images/panel/modules/td_module_21.png',
'used_on_blocks' => array('td_block_21'),
'excerpt_title' => 15,
'excerpt_content' => '',
'enabled_on_more_articles_box' => true,
'enabled_on_loops' => true,
'uses_columns' => true, // if the module uses columns on the page template + loop
'category_label' => true,
'class' => 'td_module_wrap',
'group' => '' // '' - main theme, 'mob' - mobile theme, 'woo' - woo theme
)
);
}
}
new td_api_plugin();
Hello,
The link to the top author is being added here: https://www.screencast.com/t/M78mSZFiOmsn
For the author box, the code is found here: https://www.screencast.com/t/0MrWIiAqhu
Thank you!
Hi,
So you want to position the author box in the post page differently in the post structure, from the bottom of the article page to the top.
I see you use the latest theme version, so with the help of the tagDiv composer and Cloud library plugin that will be possible.
With the cloud plugin you can now design post templates as you wish. Choose a blank template if you want to start from scratch, or a predefined cloud template which you can use as it is or modify it
– https://forum.tagdiv.com/tagdiv-cloud-library-plugin/
So for example dragging and dropping the author box in a different location will be easy
– https://www.screencast.com/t/PsGfLB4RuD
Thanks
Hi. Is it possible to locate the author box on the top of the articles (in the place of the post-author name)?
Thank you.
Best regards,
Pedro (Jornal “O Ilhavense” – http://www.oilhavense.com)
Hi,
The more articles section will display only in post pages
– https://forum.tagdiv.com/more-articles-box/
It can be configured to display latest articles, posts in relation to the currently viewed post (category, tag or author) or random articles. There are also a few other settings.
Thanks
Hi Bogdan,
Before i have author box activated, i deactivate it for try to solve this problem when i read that, few month ago:
“The only thing to mention would be that when the author box is disabled in the post pages, the author vcard will be removed after the latest theme update”
https://forum.tagdiv.com/topic/error-with-microformats-can-i-repair-this/
But i don’t see the other message.
I don’t understand the solution, where is the image below:
“I state that everything works and the org scheme is perfect and not mistakes.
Given this on the webmaster tool are shown errors as image flooded in the previous ticket. To solve it it is recommended to insert some code under the images below
//risoluzione problemi dati strutturati articoli
function add_mod_hatom_data($content) {
$iso8601_date = get_the_time(‘c’);
$author = get_the_author();
$title = get_the_title();
if(is_single()) {
$content .= ‘<div class=”hatom-extra”><span class=”entry-title”>’.$title.'</span>
ultima modifica: <span class=”updated”> ‘.$iso8601_date.'</span>
da <span class=”author vcard”><span class=”fn”>’.$author.'</span></span></div>’;
}
return $content;
}
add_filter(‘the_content’, ‘add_mod_hatom_data’);
I wanted to ask you where and if they are looking for other solutions. Despite this problem, if I do the verification from the various Google tools everything works perfectly. I hope I have explained myself well (I am not the master of the language)”
And, error from google or not, it’s certainly not good for SEO and i hope you can find solution or give us possibility to deactivate it!
-
This reply was modified 8 years by
Pierreto.
Hello,
You can create a custom author template in the tagdiv cloud library plugin and apply it to your author pages in the templates area. You can then create the template exactly as you want, without breadcrumbs or author box element.
Thank you!
Hi,
In most scenarios for the missing author vcard errors you will have to enable the author box. If you disable the author box that data will not be available.
Also check the WordPress forums for possible helpful advice in missing updated
– https://wordpress.org/support/topic-tag/missing-updated/
Try the solution provided here as well
– https://forum.tagdiv.com/topic/updated-author-and-entry-title-search-console-markup-microformats-org/
I hope this helps.
Thanks.
Hi,
In most scenarios for the missing author vcard errors you will have to enable the author box. If you disable the author box that data will not be available.
Also check the WordPress forums for possible helpful advice in missing updated
– https://wordpress.org/support/topic-tag/missing-updated/
Try the solution provided here as well
– https://forum.tagdiv.com/topic/updated-author-and-entry-title-search-console-markup-microformats-org/
I hope this helps.
Thanks.
I am trying to change the hover colour of oneof the main menu items.
(The site is currently in development but can be viewed with login and password as “guest” @ https://bit.ly/2NAz0Fs
Usually when I hover over any of the main menu items they all have the same coloured underline displayed.
News Forums Buying Guide Device Specifications G’day, guest guest!
I am wanting to have a different colour hover for just one of the menu titles. An example would be “News” having a green underline.
The CSS used for the menu hover is as follows:
.td-header-wrap .black-menu .sf-menu > .current-menu-item > a, .td-header-wrap .black-menu .sf-menu > .current-menu-ancestor > a, .td-header-wrap .black-menu .sf-menu > .current-category-ancestor > a, .td-header-wrap .black-menu .sf-menu > li > a:hover, .td-header-wrap .black-menu .sf-menu > .sfHover > a, .td-header-style-12 .td-header-menu-wrap-full, .sf-menu > .current-menu-item > a::after, .sf-menu > .current-menu-ancestor > a::after, .sf-menu > .current-category-ancestor > a::after, .sf-menu > li:hover > a::after, .sf-menu > .sfHover > a::after, .td-header-style-12 .td-affix, .header-search-wrap .td-drop-down-search::after, .header-search-wrap .td-drop-down-search .btn:hover, input[type=submit]:hover, .td-read-more a, .td-post-category:hover, .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category, .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category, .td_top_authors .td-active .td-author-post-count, .td_top_authors .td-active .td-author-comments-count, .td_top_authors .td_mod_wrap:hover .td-author-post-count, .td_top_authors .td_mod_wrap:hover .td-author-comments-count, .td-404-sub-sub-title a:hover, .td-search-form-widget .wpb_button:hover, .td-rating-bar-wrap div, .td_category_template_3 .td-current-sub-category, .dropcap, .td_wrapper_video_playlist .td_video_controls_playlist_wrapper, .wpb_default, .wpb_default:hover, .td-left-smart-list:hover, .td-right-smart-list:hover, .woocommerce-checkout .woocommerce input.button:hover, .woocommerce-page .woocommerce a.button:hover, .woocommerce-account div.woocommerce .button:hover, #bbpress-forums button:hover, .bbp_widget_login .button:hover, .td-footer-wrapper .td-post-category, .td-footer-wrapper .widget_product_search input[type='submit']:hover, .woocommerce .product a.button:hover, .woocommerce .product #respond input#submit:hover, .woocommerce .checkout input#place_order:hover, .woocommerce .woocommerce.widget .button:hover, .single-product .product .summary .cart .button:hover, .woocommerce-cart .woocommerce table.cart .button:hover, .woocommerce-cart .woocommerce .shipping-calculator-form .button:hover, .td-next-prev-wrap a:hover, .td-load-more-wrap a:hover, .td-post-small-box a:hover, .page-nav .current, :first-child.page-nav > div, .td_category_template_8 .td-category-header .td-category a.td-current-sub-category, .td_category_template_4 .td-category-siblings .td-category a:hover, #bbpress-forums .bbp-pagination .current, #bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a, .td-theme-slider:hover .slide-meta-cat a, a.vc_btn-black:hover, .td-trending-now-wrapper:hover .td-trending-now-title, .td-scroll-up, .td-smart-list-button:hover, .td-weather-information::before, .td-weather-week::before, .td_block_exchange .td-exchange-header::before, .td_block_big_grid_9.td-grid-style-1 .td-post-category, .td_block_big_grid_9.td-grid-style-5 .td-post-category, .td-grid-style-6.td-hover-1 .td-module-thumb::after, .td-pulldown-syle-2 .td-subcat-dropdown ul::after, .td_block_template_9 .td-block-title::after, .td_block_template_15 .td-block-title::before, div.wpforms-container .wpforms-form div.wpforms-submit-container button[type=submit] {
background-color: #ff6700;
}
Obviously changing the background here would change all the menu items, my goal is to change just a single menu item’s hover colour.
Also, the li class of the “News” item also has a unique reference, which I feel may be useful when changing to the its background hover.
menu-item menu-item-type-taxonomy menu-item-object-category menu-item-first td-menu-item td-mega-menu menu-item-6 news`
I could use either menu-item-6 or news? I’ve tried to come up with a solution myself but can’t quite get it working.
Thanks in advance!!
Brent
Hi,
Glad it works. Regarding the question, split the row in three columns
– https://www.screencast.com/t/OZqoEcgDFKV
Then add author boxes in each of them – https://demo.tagdiv.com/newspaper/author-box/
Thanks
Great it works, thanks !
Now I would like to put 3 author boxes on the same row. How can I do that ?
Thanks
Céline
Hello,
I would like to use the author box in the newspaper theme.
I have many authors in my blog and I would like to present them like in the nature love demo.
However, I can’t find the author ID that is required.
Could you please help ?
Many thanks
Céline
Hi,
I would ask how to make an “infinity load” on the single.php – or article post page?
I would achieve when a user just about the end of their readings + sharing tools, ads, like button, author box, comments sections — then just “auto-load” the next article which could be chosen ( by admin) from categories, tags, or just the very previous article from the list.
How can I do that? Is it available in Newspaper from Tagdiv?
a sample post:
https://www.1000wordsmagazine.com/kata-b/filleres-emlekeim/
Thx, Zoltan
Hi
I need some help with a couple of things on my site blezt.no.
1. How can I remove the author name on the front page? I have removed the author from single posts, but it’s still showing on the front page.
2. I would like to make it possible to click on my ads and get to the advertiser’s own site. Is there anything I can add to this code to make that happen?
<div class="td-all-devices"><a href="#" target="_blank"><img src="http://blezt.no/wp-content/uploads..." /></a></div>
3. How can I remove the small boxes on the front page that shows how many whos has commented on the post? I have turned off the comments, så I don’t need this to be visible.
Thanks for your help.
Hello I use The SEO Framework for the whole Seo settings. Now it is set so that at the end of each title in the search results that (| mark) is inserted. However, there is still a sign in the results of what is not wanted, see: https://www.dropbox.com/s/zk3350ebtdn46jz/tittel.jpg?dl=0. On request with the plugin developer comb the following:
The theme you’re using adds its own title styling. You should contact your theme author about this issue, so other users won’t have to face it.
And, while waiting for them to fix it, there’s a free extension named Title Fix that’ll patch it right up: https://theseoframework.com/extensions/title-fix/
After it’s activated, you should clear your page cache. When that’s done, you’ll have to wait for Google to crawl your site again.
Well, I could install this extension, but I do not want unnecessary plugins, because according to plugin developer the problem is with Theme.