DavidSortOf
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Feasibility of Changing Post-Page Attributes?Ok child theme = done.
Change it so it has the structure for two columns. (You might have to look at the page template you use for that.)
I’m working on this part now, and it’s tricky, as I’m trying to figure out how the theme controls templates and layouts.
Meanwhile, I found this post from almost 3 years ago, which describes my situation exactly, though one of the replies, with a solution, links to pages that look as though they have been updated and may no longer directly apply to this situation. Would it be possible to implement something like that? Ideally I’d like Template to appear under Page Attributes for my Posts page, as I, like gulliwog, have a static home page and I use another page for posts. I probably should have made that part clear at the outset.
Forum: Developing with WordPress
In reply to: Feasibility of Changing Post-Page Attributes?Thanks Joy! I’ll consider doing that. I’ll have to read up on child themes, first. ??
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Google says it has no sitemapThank you!
Just wanted to add that I did check my Spam folder, and that I do have my address listed under general settings. Thanks!
Thanks for digging in; plugins are:
-
Askimet
Favicon by RealFaviconGenerator
Jetpack (Custom Content Types, Protect, Sharing, Site Stats, Site Verification)
Semalt Redirect Manager
Soundcloud Shortcode
WP Random HeaderThanks Jeremy, yes, that’s the plugin I’m using now. And my shortcodes look like this:
[soundcloud url="https://api.soundcloud.com/tracks/122514535" params="color=ff6600&auto_play=false&show_artwork=true" width="100%" height="166" iframe="true" /]
Hi Jeremy, thanks, yes I do (Just tested it). With Shortcode Embeds activated in Jetpack, I get the error. When I deactivate that, and activate Soundcloud Shortcode, the problem goes away.
That’s how I have it set up now, and this is the page I’m working with, in case that helps: https://www.wavydice.com/songs/
But I’d rather use Jetpack for this, as Shortcode Embeds would also handle youtube for me.
Let me know if you need more info to replicate this!
Thanks,
David
Ah, thank you!
That number of views is actually not views you made, but views visitors made to posts you wrote.
I was hoping that something like that was the case!
Best’
David
Hey Jeremy, sure!
On my WP.com Stats page (clicked through from Jetpack Stats), under Authors, I see my own WP.com user ID, and alongside that, I see a number of views, none of which I made. For example (this is a low-traffic site), one one day I had 2 views, one from France and one from Italy. One was referred by one of those referral-spam sites (spambots?), which I’ll get rid of using another plug-in for that purpose, and the other was just a weird phantom view associated with “me” as an author.
Perhaps this is a referral-spam issue. Perhaps every view from one of those shows up as a view from “me.” And perhaps those views that don’t list a referrer are also some kind of similar visit?
Forum: Plugins
In reply to: [Breadcrumb Trail] Remove 'home' from breadcrumb trailAwesome, thanks!
Forum: Plugins
In reply to: [Accordion Shortcodes] /- when opened or closedAh! Re: my last reply, I figured it out:
.accordion-title:before { content: url("https://www.davidweiss.net/wp-content/uploads/2015/06/plusdw2.png"); float: left; margin-right: -3px; }
Note: You don’t have to change the
.accordion-title.open:before
block.Forum: Plugins
In reply to: [Accordion Shortcodes] /- when opened or closedThanks so much for the code on this thread, and a great, versatile plugin!
Here’s what I used for this page:
.accordion-title:before { content: url("https://www.davidweiss.net/wp-content/uploads/2015/06/plusdw2.png"); float: left; } .accordion-title.open:before { content: url("https://www.davidweiss.net/wp-content/uploads/2015/06/minusdw2.png"); }
From here I want to do something subtle; I’d like to move the title just a pixel or two to the left relative to the icon, but if I tweak the padding, the icon moves as well.
Any ideas for moving the title closer to the icon?
Forum: Plugins
In reply to: [Breadcrumb Trail] Remove 'home' from breadcrumb trailSorry about the duplicates (my 2 prev replies); when I hit Post, it appeared as though nothing happened. Moderator please delete.
Forum: Plugins
In reply to: [Breadcrumb Trail] Remove 'home' from breadcrumb trailHey Justin — I found this, which mentions a show_home argument that can be set to false, but that didn’t work.
Is there something similar we can do in 0.6.1 to accomplish the same thing?
Forum: Plugins
In reply to: [Breadcrumb Trail] Remove 'home' from breadcrumb trailHey Justin — I’m revisiting this issue, and I found this, which is outdated, but I tried adding
'show_home' => false,
to the$defaults = array(
section of breadcrumbs.php, and it didn’t work.Is there something similar we can do with 0.6.1 to accomplish the same thing?
Any help would be most appreciated!