GaryManners
Forum Replies Created
-
Thanks for ‘saying’ you were going to look at this, but I can’t keep this broken on the site.
I re-deactivated Photon.I’ll wait a while and try again to see if you’ve fixed the issue.
Thanks for replying.
Photon now activated. Images now not loading.
Thanks for looking at this.
http://www.parksideneighborhood.orgForum: Plugins
In reply to: [Slideshow] Photon causing slide images to not loadThat’s good to know re: not changing the way images are loaded. I thought that it happened to coincide with your update, but it could have very well coincided with an update to Jetpack/Photon. I’ll check in on their support forum.
Thanks for an excellent and simple plugin.Forum: Themes and Templates
In reply to: [WPFolio] No Sidebars in WPFolio 1.75.2I was able to build a workaround by creating a new template of sidebar-page, putting it in the child theme folder and then activating the child theme.
Here’s what I did:1. Copy page.php template
2. add template code at top of page to register template. This is where you will name your template. See the page-fullwidth.php template for the code snippet which you can copy and paste and just change the name.
3. Change <div class=”<?php wp_title(”,true,”); ?>”>
to: <div class=“notable”>4.add just before end of content and after the .notable div
<div id="sidebar"> <ul> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar') ) ; ?> </ul> </div><!-- #sidebar -->5. delete “class=“widemargins” ” class from the line where it says: <div class=”widemargins”><!– conditional class added to Pages –>
be sure not to break the div tag. What should remain is simply <div>It would be nice and simple if the theme developer could simply add this template to the existing wpfolio, seems like a no brainer.
I was having the same failed to send message and I found out what happened.
Evidently the 3.6 upgrade took out the mailing information from my contact form.
If you go to your individual Contact Form admin and you look below the form area where is says Mail – message body,to:, From:, Subject:.
All of those fields were blank.
Once I entered in the information the mail form worked.
And if you don’t remember of how those fields need to be formatted you can just create a new Untitled form and cut and paste from what was created there.hope this helps.
Forum: Plugins
In reply to: [Contact Form 7] 2 Forms 1 site – (1)One works, (1)one "Failure to Send…"I was having the same failed to send message and I found out what happened.
Evidently the 3.6 upgrade took out the mailing information from my contact form.
If you go to your individual Contact Form admin and you look below the form area where is says Mail – message body,to:, From:, Subject:.
All of those fields were blank.
Once I entered in the information the mail form worked.
And if you don’t remember of how those fields need to be formatted you can just create a new Untitled form and cut and paste from what was created there.hope this helps.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not working after update to WP 3.6I was having the same failed to send message and I found out what happened.
Evidently the 3.6 upgrade took out the mailing information from my contact form.
If you go to your individual Contact Form admin and you look below the form area where is says Mail – message body,to:, From:, Subject:.
All of those fields were blank.
Once I entered in the information the mail form worked.
And if you don’t remember of how those fields need to be formatted you can just create a new Untitled form and cut and paste from what was created there.hope this helps.
Forum: Fixing WordPress
In reply to: Links to posts from a category while on that category page.Thanks alchymyth. I hadn’t thought of searching the plug-in directory for ‘related posts’
However, I just tried out about five of these related post plugins, which claimed to have settings for categories, and none of them were able to specifically do what I’m looking for.
The search continues.Forum: Fixing WordPress
In reply to: Links to posts from a category while on that category page.I forgot to add that these category pages are set to display only one post.
I had this same issue. My first events were two months in the future and I wanted that month to show up instead of the current month.
This code patch and adding the short code tags worked great, although I had to delete my feed and re-add it. The code edit seemed to have knocked it out.
An even better solution would be if by default the grid displayed the first month containing events. Because now that I have the short code telling the grid to display a month and a year, once that month passes, I’m presuming I’ll have to delete those parameters or else that month will permanently be the landing month for the calendar.
Maybe your next upgrade can incorporate this idea?
Rock on.
I don’t mean to sound dense. But I don’t get it.
When the theme says it has “an optional display font,”
What does that mean?
What does that allow me to do exactly?So this is a setting or a hook for developers rather than a theme option for casual users?
I searched the codex for how to utilize this function but had no luck.
I answered my own question.
For those who may want to do this here is where I found the “photos” tag.
\In the plug-ins edit files for NextGen gallery open nextgen-gallery/view/album-compact.php
check out line 32
<p><?php echo $gallery->counter ?> <?php _e(‘Photos’, ‘nggallery’) ?></p>Change the Photos to whatever you want.