piratescott
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disabling h1 Headersyeh stylesheet.css or style.css and I don’t know what any of those you listed even are
Forum: Fixing WordPress
In reply to: Changing my Avatar (Gravatar)Recover password? I don’t use gravatar so I’m not sure, you can get a plugin called simple local avatars (something along those lines) that just lets you upload the avatars to your own website rather than the gravatar thing.
They really need to let you just do that through wordpress without gravatar anyway.Forum: Fixing WordPress
In reply to: Disabling h1 HeadersOn mine it’s Appearance -> Editor and then look for the style.css on the right hand side of the window but not sure if everyone has the editor or it is part of my theme (think they all have it though)
Problem is if it’s an updatable theme when it updates you will have it changed so an even better thing to do would be this.
Appearance -> Edit CSS and write it in there, that’s a master css file that control’s all other css files, problem is if your plugins use the h2 tags and so on it will change it for all of them too.
Forum: Fixing WordPress
In reply to: Disabling h1 HeadersIf you go into your current template’s CSS you can edit the font size for the H2 tag.
like this
h2 { font-size:10px }Forum: Fixing WordPress
In reply to: Hidden blog: it's only visible in the mobile version.There is literally no source code to even guess what happened. By “Yesterday I was simply adding an address in my blog roll” what do you mean? just writing a post? or editing code?
Forum: Fixing WordPress
In reply to: Listing these articles (small PHP Code)OK so I got it working the way I want, now I want an image and a snippet of the posts content text with this
<ul> <?php $args = array( 'post_status' => 'pending', 'numberposts' => '10', 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => 'post-format-aside', 'operator' => 'NOT IN' ), array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => 'post-format-image', 'operator' => 'NOT IN' ) ) ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ echo '<li class="vote-title"><img src=""/><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> <li>' . has_post_thumbnail($recent["get_the_post_thumbnail"]) . '</li> '; } ?> </ul>Thats the code but the section for get_the+post_thumbnail won’t show and I tried something similar for excerpt but that also wouldn’t show, whats the correct format order for getting thumbnails and content text to show?
Forum: Plugins
In reply to: [liveTV Bundle] Major HelpYou need to go into plugins and enable the other versions of the plugin
Forum: Plugins
In reply to: Visual Composer – Frontend Editor loading problemWouldn’t it be best getting in touch with wpbakery themselves? I mean the plugin isn’t free so they offer support for it themselves.
Forum: Plugins
In reply to: Are there any Vote to Publish plugins?Still haven’t found anything close, are there any similar plugins I could probably tweak?