Search Results for 'remove tag from post'

Results from the Forum
Bogdan B.
tagDiv Staff

Hello,

Is it the hover effect you want removed? It seems you already managed to change the grid style. You can select different styles for your grids in the tagdiv composer
As for the reviews, you can use the cloud library template to import a custom post template and use the tagdiv composer to implement the reviews above the post content.
Here is an example of how you can edit post templates: https://www.youtube.com/watch?v=BC-gCCy80Gw

Thank you!

Simion C.
tagDiv Staff

Hi,

So you mean the thumbnails disappeared from blocks/grids modules? Maybe after changing the filter settings the new posts which appear don’t have featured images set
https://forum.tagdiv.com/featured-image-or-video/
If that is the case there will be no thumbnails created
https://forum.tagdiv.com/theme-thumbs/

But you say the images disappeared in the whole website and also the tagDiv composer plugin has been removed? Now that is unusual. Could be related to insufficient resources, specially WP memory
https://forum.tagdiv.com/requirements-for-newspaper/
I would suggest that you contact the hosting provider and ask them to increase the values of the parameters mentioned in the guide if necessary.
Also maybe they can check if something happened with the server or database recently.

Bogdan B.
tagDiv Staff

Hi,

In the case of the block added above the widget sidebar, it is not a sidebar name problem. There is most likely a different problem that removes the block. Please check if you have “unique articles” enabled. When this happens, it will remove any duplicate posts. Please check for this options: https://forum.tagdiv.com/unique-articles/

Thank you!

Catalin
tagDiv Staff

Hello vineetaggar,

Do you have correctly set up the featured video for that post? Please check the documentation from here -> https://forum.tagdiv.com/featured-image-or-video/ If the problem is still there and if you need more assistance in this case, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can take a closer look at your setup page. Also, if you are using some untested plugins, you should remove all of them, purge CDN files and check the results. You should provide the link to this conversation at our email so we can quickly identify you.

Thanks for your understanding!

Bogdan B.
tagDiv Staff

hello,

If you want to change the grid, simply remove it in the tagdiv composer and use another big grid that only shows 1 post instead of 7. Please use this guide of you need help using our tagdiv composer: https://forum.tagdiv.com/tagdiv-composer-tutorial/

Thank you!

Soeren91
tagDiv Member

The article says:

Most CMS’s, including WordPress, add the H1 tag automatically to the title of a blog post. But sometimes a theme can alter this setting.

I.e. it is not the case for all themes.

The article also suggests checking out the source code of a post to look for <h1> tags, and if I do not insert any H1-header myself, no <H1> tags appear. I assume this means, that the page title is not considered a H1-header, or it would have been surrounded by the <h1> and </h1> tags.

Feel free to correct me if I’m wrong 🙂

Thus, I still need to find out how to remove the page title. Is that not possible in the Newspaper theme?

Søren

  • This reply was modified 7 years by Soeren91.
aresglez
Participant
#0

Hi,
I’m using a CPT for images with quotes. With two taxonomies, topics (as categories) and autor (as tags).
I’m using this code but I have a Error 404 when I click in a single quote or in page:

add_action( 'init', 'add_citas' );

function add_citas() {
$labels = array(
'name' => _x( 'Citas', 'post type general name' ),
'singular_name' => _x( 'Cita', 'post type singular name' ),
'add_new' => _x( 'Añadir nueva', 'book' ),
'add_new_item' => __( 'Añadir nueva cita' ),
'edit_item' => __( 'Editar Cita' ),
'new_item' => __( 'Nueva Cita' ),
'view_item' => __( 'Ver Cita' ),
'search_items' => __( 'Buscar Citas' ),
'not_found' => __( 'No se han encontrado Citas' ),
'not_found_in_trash' => __( 'No se han encontrado Citas en la papelera' ),
'parent_item_colon' => ''
);

$args = array( 'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_icon' => 'dashicons-format-image',
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail' )
);

register_post_type( 'citas', $args ); /* Registramos y a funcionar */
}

add_action( 'init', 'create_citas_taxonomies', 0 );

function create_citas_taxonomies() {

$labels = array(
'name' => _x( 'Temáticas', 'taxonomy general name' ),
'singular_name' => _x( 'Temática', 'taxonomy singular name' ),
'search_items' => __( 'Buscar por temática' ),
'all_items' => __( 'Todas las temáticas' ),
'parent_item' => __( 'Temática padre' ),
'parent_item_colon' => __( 'Temática padre:' ),
'edit_item' => __( 'Editar temática' ),
'update_item' => __( 'Actualizar temática' ),
'add_new_item' => __( 'Añadir nueva temática' ),
'new_item_name' => __( 'Nombre de la nueva temática' ),
);
register_taxonomy( 'temática', array( 'citas' ), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'citas' ),
));

$labels = array(
'name' => _x( 'Autores', 'taxonomy general name' ),
'singular_name' => _x( 'Autor', 'taxonomy singular name' ),
'search_items' => __( 'Buscar autores' ),
'popular_items' => __( 'Autores populares' ),
'all_items' => __( 'Todos los autores' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Editar autor' ),
'update_item' => __( 'Actualizar autor' ),
'add_new_item' => __( 'Añadir nuevo autor' ),
'new_item_name' => __( 'Nombre del nuevo autor' ),
'separate_items_with_commas' => __( 'Separar autores por comas' ),
'add_or_remove_items' => __( 'Añadir o eliminar autores' ),
'choose_from_most_used' => __( 'Escoger entre los autores más utilizados' )
);

register_taxonomy( 'autor', 'citas', array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'escritor' ),
));
}

Could you help me? It has to be a silly thing…

Thanks!

Brain916
tagDiv Member

I understand. Guess I can remove it for now. If I update this, it won’t remove what I have created, correct? I am also using the blank page template and the title tag is linking to the post through the breadcrumb.

Simion C.
tagDiv Staff

Hi,

The smart sidebar can be disabled fully from the theme panel
https://forum.tagdiv.com/smart-sidebar-2/
Once disabled it would be impossible that the sidebars are still sticky. If you have caching, clear it. Also clear the browser cache or force refresh a page (Ctrl+Shift+R), or test with a new browser.

If possible, post a link to the website so I can take a look. No need to provide the activation key in the forum. I will remove it.

Thanks

Simion C.
tagDiv Staff

Now that is unusual, those issues were fixed quite a while back, there were no other reports since then. There are no more !important tags in the AMP stylesheet, all were removed.

But still it seems in your case !important is detected for some reason. I tested some other posts from your website, there are no errors there. But the same stylesheet is loaded for all posts, so why for some posts it detects the tag and in some not is unusual.

I see an unusual link in the post content, with some invalid CSS
https://www.screencast.com/t/6mrlPuHqX
Could you try as a test to remove that link and check if the same is detected, use the AMP validator tool
https://validator.ampproject.org/

Simion C.
tagDiv Staff

Hi,

That could be possible. I created a default gallery in a post and a tagDiv gallery in different post. They look like this in the database
Default gallery – https://www.screencast.com/t/irxjTy7eJ2w
Tagdiv gallery – https://www.screencast.com/t/vHNseMRaKzO

A search and replace of the default shortcode should work. Some useful topics here
https://wordpress.stackexchange.com/questions/225152/search-remove-specific-shortcode-from-all-posts
https://wordpress.stackexchange.com/questions/7693/what-sql-query-to-do-a-simple-find-and-replace

Thanks

Simion C.
tagDiv Staff

Hi,

The grids cannot display anything else than posts, blocks are the same. So a banner in a big grid is not possible.
Maybe use image elements that also have options for custom URLs, then you can create a banner.

Regarding the full width grid, there are quite a few full width grids to choose from, there are 10 types available
https://demo.tagdiv.com/newspaper/full-big-grid-1/
Edit the page and remove the current grid, use a full width grid instead.

This is full grid 8 for example
http://prntscr.com/kgzrtb

Thanks

Simion C.
tagDiv Staff

Hi,

Let’s take an author for example. He creates a post and publish it on the website. The author chooses the categories and tags he wants the post to have. The post will appear in the category pages and tag pages accordingly. The author can’t create actual pages or choose where the post is displayed.

The website admin or editor (only ones with access to pages) will create pages and place blocks, grids etc. These pages can display whatever content possible with the tagDiv composer and the articles they choose.

All the capabilities of wordpress user roles are mentioned in the WordPress codex mentioned above.

The menu can be accessed by admin only, he can modify/add/remove the menus. Only the admin can access the theme panel as well.

The Lifestyle item in the demo menu is a mega-menu, that works only with categories, it will not display pages
https://forum.tagdiv.com/mega-menu/
Pages can be displayed in drop-down menus, or added directly in the main menu.

The theme capabilities in the matter of taxonomies are limited, most options and elements will work only with categories and tags
https://forum.tagdiv.com/custom-post-type-support/
The custom post types and taxonomies will not have the same settings and options as default posts and categories.

chivinews
Participant
#0

Hi TagDiv support and community,

I’m creating a website using newspaper 8. I imported the main demo, now I’ve started deleting categories, posts and pages, as well as adding our own content, but I haven’t been able to remove “All” and “Featured” from content sections on the homepage, how do I do that?

Our site is a news site in Spanish, please help.

Simion C.
tagDiv Staff

So you lost posts that you created? That would mean there are problems with the website database where posts are kept.

As I mentioned above, only imported posts by the demo will be removed when a demo is uninstalled. You own created posts will not be touched. Unless maybe you edited the dummy posts from the demo instead of creating new ones, if you did that then the posts are lost
https://forum.tagdiv.com/installing-demos/

Only if made a full backup before could they be restored.

Bogdan B.
tagDiv Staff

Hello,

The meta info is handled separately for posts and for other templates such as pages or categories. If you want them removed from the etire site you also have to disable them from here: https://forum.tagdiv.com/meta-info-modules-blocks/

Thank you!

kytmagic
Participant
#0

Going to try a re-install. GoDaddy shows this as errors:

[Thu Aug 02 19:01:18.956897 2018] [lsapi:error] [pid 3061320:tid 140305286289152] [client 69.196.184.79:53661] [host magic.facetofacegames.com] Backend fatal error: PHP Fatal error: Cannot redeclare tdc_on_remove_core_updates() (previously declared in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php:234) in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php on line 233\n, referer: http://magic.facetofacegames.com/wp-admin/post-new.php?post_type=page
[Thu Aug 02 18:57:00.674634 2018] [lsapi:error] [pid 3061361:tid 140305139431168] [client 69.196.184.79:53157] [host magic.facetofacegames.com] Backend fatal error: PHP Fatal error: Cannot redeclare tdc_on_remove_core_updates() (previously declared in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php:234) in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php on line 233\n, referer: http://magic.facetofacegames.com/wp-admin/post-new.php?post_type=page
[Thu Aug 02 18:53:12.290436 2018] [lsapi:error] [pid 3061320:tid 140305160410880] [client 69.196.184.79:52619] [host magic.facetofacegames.com] Backend fatal error: PHP Fatal error: Cannot redeclare tdc_on_remove_core_updates() (previously declared in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php:234) in /home/facetofacegames/public_html/magic/wp-content/plugins/td-composer/includes/tdc_main.php on line 233\n, referer: http://magic.facetofacegames.com/wp-admin/edit.php?post_type=page

Simion C.
tagDiv Staff

Hi,

– SSL implementation has to be done by you, check with your hosting and online guides and solutions in the matter. These are some tutorials I found, please check them out

http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/

From what I can see there are no mixed content issues, so the problem is elsewhere. I believe Google Chrome treats all http pages as not secure now

https://www.optimizepress.com/install-ssl-wordpress/
https://askwpgirl.com/how-to-install-ssl-certificate-wordpress/

Double check your SSL implementation and certificate, go over the required steps again. Maybe you missed something. Ask your hosting for assistance, they might have a service of their own for SSL or at least provide some information how you might achieve it.

– The theme will allow you to place ads, there are ad spots in the theme panel. You can use Adsense or different ads, depending on your preference.
There are article ads you can use in the post pages
https://forum.tagdiv.com/newsmag-article-ads/

In pages you can use the ad box element, place them in the page where needed. They will allow you to select from the custom ad spots in the theme panel
https://www.screencast.com/t/dsjO0qvx5E

– That is a video playlist, edit the page with the tagDiv composer and click on the playlist element. In the composer sidebar you can then remove the default videos and add your own. Enter YouTube video IDs only
https://forum.tagdiv.com/newsmag-video-playlist/

Hope this helps.
Thanks

Simion C.
tagDiv Staff

Hi,

The breadcrumbs will show one level of parent-child category, there is no setting to change that at the moment. The same would be for the cloud single templates.
I am now aware of any plans to make modifications to the breadcrumbs. Sorry for the inconvenience.

I mobile the last element of the breadcrumbs is not shown, I could give you a code to make it appear, enter it in Theme panel->Custom CSS
https://www.screencast.com/t/sOFVXiLycS

@media (max-width: 767px) {
.single-post .td-bred-no-url-last{
display: inline;
}}

Regarding that hidden category, where exactly is it still showing? That option will remove it’s tag from the single post pages and category pages. I see you don’t show any category tags in post pages for example.

Thanks

mehedi57
Participant
#0

Dear sir, I need two help. 1. Can you please tell me how to remove this white space. Image link – https://drive.google.com/open?id=1l9F5RqBY0pni_IGiiDqKXci448-0AstY. 2. How to use thirst party installed plugin in Tagdiv’s custom post or Tagdiv composer?

Simion C.
tagDiv Staff

Hi,

Everything the demo imported will be removed. The demo stylesheet (meaning demo custom CSS), demo posts (if you installed with content), the theme panel settings will be removed. If you for some reason edited demo posts (dummy content) note that these will be removed.

You could make a full backup before removing the demo, so if something goes wrong you would have that.

Also the theme panel settings can be exported and imported
https://forum.tagdiv.com/import-export-theme-settings/

Installing a new demo removes the previous one automatically, that cannot be changed. Only one demo can be installed at a time.

Thanks

Simion C.
tagDiv Staff

Hi,

Custom CSS can be entered either in the Live CSS, or theme panel custom code sections. The theme panel category tag setting will affect all the modules.

If you want to remove the category tag for only one specific module in a block and not the rest, you could first set a custom class for the block
https://www.screencast.com/t/5uxWsEfEA
Then refer to that class and remove the category tag only for that block
https://www.screencast.com/t/NIHDR7h4sp

.myclass .td-post-category {
display: none;
}

I believe that is what you want. Let me know if I misunderstand.

Thanks

Catalin
tagDiv Staff

Hello pocto,

1)If you will check our demo preview here -> https://demo.tagdiv.com/newspaper/ you will see that the mega menu loading as expected. This problem can happen due to such untested plugins used by you and which can interact with the theme core files which might cause a lot of js and unknown errors. Remove all of them, clear all the caches and check the results.
2)You should provide your website URL so I can take a closer look at your Top Bar menu and also, so I will be able to provide a more accurate code.
3)Unfortunately, there is no option for this at the moment. If you edit the PHP files you will make all posts open in new tabs. If this is what you want, you can add
target="_blank"
here: http://screencast.com/t/4W7ikxysFjDy
Simply add it before the closing bracket for the tag.

I hope this helps.

Thank you!

Simion C.
tagDiv Staff

Hi,

1. You can remove/replace the default ads, that will not be a problem. Please check the theme ad spots and make the modifications as needed
https://www.screencast.com/t/Q21fWNthaZtC
You can enter your own ad codes there
https://forum.tagdiv.com/newsmag-header-ads/

Also the Ad box elements will allow you to place ads in pages in the positions you want. You can place them in pages with the composer or as widgets.

2. The playlist will display only videos, it cannot display posts if that is what you mean. It will display YouTube or Vimeo videos, by entering their IDs
https://forum.tagdiv.com/newsmag-video-playlist/
So to chnage those videos, edit the page with the tagDiv composer and select the playlist. It’s settings will appear in the composer left sidebar.

Each block or grid in the page can be configured to display the content you want
https://forum.tagdiv.com/tagdiv-composer-tutorial-2/
https://forum.tagdiv.com/newsmag-block-settings-tutorial/
The same for the widgets in sidebars, in Appearance->Widgets.

Let us know if you have more questions or you need help with something.
Thanks

Ikeeneje
Participant
#0

Hello Catalin,
Please, can you guide to achieve these two tasks;
1. I want to remove the newsmag advertisements that came by default and I will like to put mine?. There are three(3) locations on my website, one place is top-right and has an advert space of 728×90 ad. The second location is midway-right, it has an advert space of 300 X 250 ad and the top of it has “stay connected” which shows the social media counter. The third place has equally an advert space of 300 X 250 and it is at the right-hand side.
2. I want to post my news to show on the ” Video Playlist ” showing on the website, mid-way with large video window. I noticed those contents that came by default when I acquired this website from tagDiv is still the content therein. I will like to know where to select ( say categories or whatever) so that my news stories will also reflect on that location on my website.
My website is ” http://www.astoldpost.net
Thank you for your clients` support. I am waiting to hear from you.

With regards,
Ike

Viewing 25 results - 1,151 through 1,175 (of 1,956 total)