mikeshinobi
Forum Replies Created
-
Forum: Plugins
In reply to: [wpCentral] Unable to add websiteJust wait about 10 minutes or so and you should be able to add it
Forum: Plugins
In reply to: [wpCentral] remove wpcentral notice from my dashboardMine went away after I connected my site to my wpCentral account.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Timers no longer appearWelp, nevermind, uninstalling and reinstalling it fixed it…
“Have you tried unplugging it and plugging it back in?”
-_-
Thanks for the great plugin btw!
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Timers no longer appearAlso here’s one of my pages that has/should have a timer on it if it helps at all:
https://holidayvault.com/christmas/
The timer would appear between the “Christmas Countdown” and the “until December 25, 2018”
Forum: Fixing WordPress
In reply to: Sort pages by template usedWow, it works! Thank you so much!
Forum: Fixing WordPress
In reply to: Sort pages by template usedThanks for the reply implenton, but I should’ve been more specific. Unless I’m misunderstanding, that page you linked me to is talking about sorting the pages on the front end (for the user). I’d actually like to sort them on the backend, on the “edit.php?post_type=page” page, and so I think I’m looking to either add a “Template” column alongside the Title/Author/Date columns which I could then click to sort by template, or a drop down box for templates up beside the filter button so I could filter the pages by template. Either one would work for me.
This sounds kind of confusing so I made an amazing picture to help show what I’m talking about: https://imgur.com/o3OhwOt
Forum: Themes and Templates
In reply to: Overriding title given by page.php?Ah I found out the solution – page templates. Been using WP for years now and never knew these existed! You learn something new every day, I suppose.
Forum: Plugins
In reply to: [Responsive Social Sidebar Share] Showing the pin countHi again,
I posted this a while back asking if it was possible to show the number of pins in the floating sidebar version of this plugin… and although I was never actually able to, I gave up on it because it wasn’t that important.
Now I’m seeing that now, suddenly, the pin count actually is showing in the floating sidebar – however, the pin count is actually hovering over the button above it, which pretty obviously causes a problem. Here’s a picture: https://i.imgur.com/HojBHkY.jpg
As you can see, the pin count is hovering over the Google+ button above it. I didn’t change anything; it just started happening suddenly, and it’s happening across all of my sites. I even tested it on a fresh WordPress install and the problem is still there, so it’s not a plugin conflict. Please give us an update when you can!
Thanks,
MikeForum: Plugins
In reply to: [Recent Posts Slider] Not showing the last postAh I figured out what was causing it!
It started happening again and I couldn’t figure out why, and then I noticed I had browser’s zoom at 90% (zoomed out a bit). I zoomed it back in to default (100%) and the problem went away.
You could go to my site and try it out for yourself if you wanted to see it in action – just use Ctrl + “-” to zoom out a bit and the last post on the slider will disappear. Although I don’t think it’s really a big deal and would probably be complicated to fix.
Forum: Plugins
In reply to: [Recent Posts Slider] Not showing the last postHi Neha!
I actually tried that… I made it a lot smaller so there was definitely enough room but it didn’t fix it.
However, strangely, it seems to have fixed itself now. I noticed it last night, but forgot to come here and update. So… yay! Although I am still curious what the heck was making it do that, but all I care about is that it works ??
Thanks!
Forum: Plugins
In reply to: [Recent Posts Slider] Not showing the last postUpdate: I just added that same new plugin onto another site on which I’m using the recent posts slider and the slider is still working just fine over there. So I’m not sure what the heck is wrong with this one…
I tried uninstalling and reinstalling the plugin multiple times but it didn’t do anything.
Forum: Plugins
In reply to: [Pinterest "Pin It" Button] Button in wrong spotDoh. sorry ??
Forum: Plugins
In reply to: [Pinterest "Pin It" Button] Button in wrong spotWell, I actually figured out the problem, but here’s a link to a page so you can check it out:
https://99crafting.com/yarn-octopus/
The button is misplaced because the class of the image is set to “alignnone”, but then I center it using <p style=”text-align:center”>. So to us, the image is centered, but to the plugin, it’s not! Or something like that…
Well wouldn’t you guess – I figured it out literally 2 minutes after I took the trouble to post on here.
It was a simple fix, but I hate when people ask a question then say “never mind figured it out!” without sharing what they figured out, so I’ll share it as well.
In the plugin code, there’s this
<table> <tr> <th>Request</th> <th>Destination</th> </tr> <tr> <td><small>example: /about.htm</small></td> <td><small>example: <?php echo get_option('home'); ?>/about/</small></td> </tr> <?php echo $this->expand_redirects(); ?> <tr> <td><input type="text" name="301_redirects[request][]" value="" style="width:15em" /> » </td> <td><input type="text" name="301_redirects[destination][]" value="" style="width:30em;" /></td> </tr> </table>
And you just change it to this
<table> <tr> <th>Request</th> <th>Destination</th> </tr> <tr> <td><small>example: /about.htm</small></td> <td><small>example: <?php echo get_option('home'); ?>/about/</small></td> </tr> <tr> <td><input type="text" name="301_redirects[request][]" value="" style="width:15em" /> » </td> <td><input type="text" name="301_redirects[destination][]" value="" style="width:30em;" /></td> </tr> <?php echo $this->expand_redirects(); ?> </table>