Devin Price
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Portfolio Press] Customizing Field-Description of Comments BoxHi. you’d need to edit the German translation file that you’re using.
Forum: Themes and Templates
In reply to: Custom Default Gravatar URL TroubleI checked this on a production site (rather than development) and the image is loading correctly.
Forum: Themes and Templates
In reply to: Custom Default Gravatar URL TroubleI am having the same issue.
/** * Add a custom avatar for use with this theme * */ function summit_avatar_defaults( $avatar_defaults ) { $avatar = get_template_directory_uri() . '/images/avatar.gif'; $avatar_defaults[$avatar] = "Disguise (Summit)"; return $avatar_defaults; } add_filter( 'avatar_defaults', 'summit_avatar_defaults' );Path WordPress is attempting to use:
<img alt="" src="http://0.gravatar.com/avatar/a9c17d250b9b97a7baf76ac13d817a08?s=32&d=http%3A%2F%2Flocalhost%3A8888%2Fsandbox%2Fwp-content%2Fthemes%2Fsummit%2Fimages%2Favatar.gif%3Fs%3D32&r=G&forcedefault=1" class="avatar avatar-32 photo" height="32" width="32">Resolves to:
http://i0.wp.com/localhost/sandbox/wp-content/themes/summit/images/avatar.gifForum: Themes and Templates
In reply to: [Portfolio Press] From The Home Page…I can ping the plugin author about and see if there’s a fix on their end.
What is page template are you using for the home page? I’ll test and see if I can replicate.
Forum: Themes and Templates
In reply to: [Portfolio Press] From The Home Page…I don’t think this a theme issue. To test, try switching to the default theme and see what happens if you go to http://www.vanndigital.com/page/2.
It’s either a plugin or something in your .htaccess.
Forum: Themes and Templates
In reply to: [Portfolio Press] From The Home Page…Try disabling all of your plugins, see if that resolves the paging issue. If it does, re-enable plugins one by one to see which one might be causing the issue.
Ok, no problem. If someone else reports the issue I’ll see if we can trace it down further.
Forum: Themes and Templates
In reply to: [Portfolio Press] By [author] – without the linkPaste this in your child theme functions.php:
function portfoliopress_postby_meta() { printf( __( '<span class="meta-prep meta-prep-author">Posted </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'portfolio-press' ), esc_url( get_permalink() ), esc_html( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'portfolio-press' ), get_the_author() ) ), esc_html( get_the_author() ) ); }Then edit as needed.
Forum: Themes and Templates
In reply to: [Portfolio Press] Mobile VersionThe theme is responsive and should work well on mobile devices with the Jetpack module. I’d recommend disabling it.
Forum: Plugins
In reply to: [Replace Content Image Size] Debug ErrorsDid the job as advertised though!
Forum: Themes and Templates
In reply to: [Portfolio Press] Dash symbol not recognised in titles?Oh, sorry, I was jumping around multiple support topics and accidentally posted in the wrong one.
I pasted “Title of the Post in Words – 3/365” into my local WordPress and it works fine. Can you edit your post and change it back to a dash? Or does it revert back to an underscore when you save?
Forum: Themes and Templates
In reply to: [Portfolio Press] Dash symbol not recognised in titles?Hi @elliekennard. There is definitely a redirection bug somewhere on your site. This URL is redirecting to the home: http://www.vanndigital.com/page/2.
Try disabling plugins to see if you can find the culprit.
Forum: Themes and Templates
In reply to: [Portfolio Press] Dash symbol not recognised in titles?That does make no sense. Can you edit it and change it? My WordPress install saves that title fine.
Forum: Themes and Templates
In reply to: [Portfolio Press] From The Home Page…Do either of you have the official “Facebook” plugin installed? It has several bugs, one of which is a pagination bug.
Forum: Themes and Templates
In reply to: [Portfolio Press] Missing TagsDo you have an SEO plugin enabled?
Can you give me a link to one of the problematic URLs on your site?
(P.S. Thanks for helping out other users in the forums!)