valentin88
Forum Replies Created
-
Forum: Plugins
In reply to: [Disqus Comment System] Validation errors caused by dsq-postid comments relHi,
HTML5 is not accepting “rel” in span.
You have to edit the disqus.php file from /wp-content/plugins/disqus-comment-system.
Search for “span class=”dsq-postid” and replace the “rel” attribute with data-comm (you can name it how you want: data-xxxxxxx).
Also, where you see “rel” in javascript, replace it with data-comm. Don’t replace the rel in “link rel=’stylesheet'” ??Forum: Themes and Templates
In reply to: dashboard css problemAdd this to wp-config.php
define(‘CONCATENATE_SCRIPTS’, false );
Forum: Plugins
In reply to: [Taxonomy Terms List] [Plugin: Taxonomy Terms List] Remove LinkHi Eric,
Unfortunately yes, when you will upgrade the wp version, the category-template will be overwritten .
I faced with this problem too, and I resolved it by copying the function in the functions.php from my theme folder , and I’ve named it get_the_term_list_unlinked. Of course, if you are using multiple themes, you will have to copy the function to every functions.php of these themes.
I hope this is the answer you are looking for .
Good luck!Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Title displaying blog name twiceFrisno you forgot to add the “-” character after
%%title%%
. The result must be
%%title%% –
or else will look like POST/PAGENAMEBLOGNAME and we need POST/PAGENAME – BLOGNAME .
Forum: Plugins
In reply to: [Taxonomy Terms List] [Plugin: Taxonomy Terms List] Remove LinkHi,
If you are using
<?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?>
, go to wp-includes/category-template.php, locate the function and remove the unnecessary code. Your function will have to look like this :function get_the_term_list( $id = 0, $taxonomy, $before = '', $sep = '', $after = '' ) { $terms = get_the_terms( $id, $taxonomy ); if ( is_wp_error( $terms ) ) return $terms; if ( empty( $terms ) ) return false; foreach ( $terms as $term ) { $link = get_term_link( $term, $taxonomy ); if ( is_wp_error( $link ) ) return $link; $term_links[] = $term->name ; } $term_links = apply_filters( "term_links-$taxonomy", $term_links ); return $before . join( $sep, $term_links ) . $after; }
I hope it helps.
Cheers!