wfeu
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twelve] 3 Footer widgets, collapse at breakpointsThat works! Thank you~!
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] Problem with new updateThanks, I have just verified Im still on php 5.4.45. I do have your plug in on another site I manage that is working. It is running php 5.6.36. Is there a specific version of version of php you recommend like php 7 since 5.6 support in December of this year ?
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] Problem with new updateI have the same issue w 4.0.8 just deleted it and reinstsalled again from wordpress and got the error on the new install: Plugin could not be activated because it triggered a fatal error.
Parse error: syntax error, unexpected ‘$value’ (T_VARIABLE) in wp-content/plugins/xcloner-backup-and-restore/vendor/aws/aws-sdk-php/src/functions.php on line 36Forum: Themes and Templates
In reply to: [Pratt] Posts Thumbnails "entry-summary" & prev-next on postsI got the thumbnails (first image or video embed) to show on the blog posts page index.php by changing
<?php the_excerpt(); ?>
to
<?php the_content(); ?>
in the content.php pageIm still trying to get the first image or video thumbnails to show on the static main page (template part page-fullpostnoheader.php). I am editing content-page-posts.php and I change
<div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->to
<div class="entry-summary"> <?php the_content(); ?> </div><!-- .entry-summary -->I get the first image or video as a thumbnail with the full post.
Is there a way to get thumbnails with the_excerpt ? I want the excerpt with thumbnail on page-fullpostnoheader.php
Thanks
Forum: Themes and Templates
In reply to: [Pratt] Posts Thumbnails "entry-summary" & prev-next on postson the single post navigation (single.php) I added:
<div class="nav-links-single"> <?php echo ' PREVIOUS POST '; previous_post_link(); echo ' | NEXT POST '; next_post_link(); ?> </div><!-- .nav-links -->Thats working now.
Still trying to figure out post thumbnails for my static blog posts page index.php
Forum: Themes and Templates
In reply to: [Tiny Framework] Footer Social Icons to TopThanks for the quick reply~!
Forum: Themes and Templates
In reply to: [Tiny Framework] Adding Page title & icon to blog posts pageawesome~! Thanks, works great.
Forum: Themes and Templates
In reply to: [Tiny Framework] Adding Page title & icon to blog posts pageReading on wordpress it says for custom blog posts index to use home.php in a theme.
“To create a custom blog posts index template, include the following in the Theme: home.php “
I copied category.php from Tiny Framework Parent inc/examples renamed it to home.php and put it in the child theme.
My blog posts page now has a title like category archive pages without the folder icon called “Archives”
Where/what would I change to rename that to Blog ?
In my new child theme folder home.php I have been trying this part:
<header class="page-header"> <?php the_archive_title( '<h1 class="page-title" itemprop="headline">', '</h1>' ); the_archive_description( '<div class="taxonomy-description">', '</div>' ); ?>Thanks
Forum: Themes and Templates
In reply to: [Tiny Framework] Adding Page title & icon to blog posts pagemy Blog goes to a Posts Page would that be the full-width.php and front-page.php ?
Thanks
I tried the last version of the Parent theme – with the “disable external link icon” issue and it shows content on the Pages. Switching to 2.1.1_2015-06-12 Page content does not display.
Thanks
Forum: Themes and Templates
In reply to: [Tiny Framework] Disable external link icons for all contentI did, that is where I began:
“If you want to disable external link icons for all content links of your site, please lookup Tip25b in style.css.”
i edited styless.css in child theme tip25b. I am still seeing them. Ive sent you a email just a while ago. Thanks for the speedy reply on forum posts.
Forum: Themes and Templates
In reply to: [Tiny Framework] Specific category posts to static pageYes Im not seeing or able to choose the new page template on Pages add new or Pages Edit a existing page.
In page attributes – Template drop down I only see Default Template, Front Page Template, Full Width-Page Template, No sidebar, and links
In the Tiny Framework Parent theme folder you have these inside a folder called page-templates/
Ive made a copy of full-width.php from the parent theme, renamed it to full-width-media.php and put it into my child theme folder
Ive tried it in the root of the child theme and I made two folders inside the child theme and tried it in those. page-templates/ and theme-parts/
When I go to a page to select the full-width-media.php page template It is not in the drop down menu to choose. Ive tried making a new page and editing a existing page I do not see it in the template list to choose.
Thanks
Forum: Themes and Templates
In reply to: [Tiny Framework] Specific category posts to static pageWhere does the template page file.pho go inside the tiny framework child theme folder to call up in the page templates to be selected on the wordpress page menu ? I also sent you a donation. Thanks
Forum: Themes and Templates
In reply to: [Tiny Framework] Disable external link icons for all contentIm not able to take the site live yet. But when I select the external link icon in firebug Im seeing :
<span aria-hidden="true" class="icon-webfont fa-external-link"></span><span class="screen-reader-text">Opens in a new window</span>for the code of the Tiny Framework external link icon.
Forum: Themes and Templates
In reply to: [Tiny Framework] Blog ExcerptsThanks that works~!