clever_name
Forum Replies Created
-
@taylorkspencer I am so glad I found this thread because I’ve been losing my mind reformatting my content.
Okay so I’ve already done that. So there is no functionality to share a post to IG currently due to IG policy correct? Thanks so much for the support.
- This reply was modified 8 years, 2 months ago by clever_name.
Thank you for the prompt response, the plugin is great.
The IG button on the top and bottom of all posts. Here is an example page:
http://dailydsports.com/1971-orioles-pitchers
I followed the instructions for Instagram itself and submitted a video of me clicking the button and it just taking me straight to IG without sharing anything. Not sure if you can advise me further what is needed to get this to work.
Forum: Plugins
In reply to: [Image Optimization For SEO] Bulk for Past ImagesI appreciate the prompt response and will give it a shot. …downloading…
Thank you.
Forum: Plugins
In reply to: [Wp2Newsletter] No form for “Choose Newsletter Template”I’m also having this issue. Please advise.
Forum: Plugins
In reply to: [Facebook Comments] Width Set to 146 InlineThanks nupy, I didn’t identify the class correctly in my attempt.
This code worked for me, for some reason 100% was causing the iframe to disappear completely.
.fb-comments.fb_iframe_widget span { width: 500px !important; display:block; }Forum: Plugins
In reply to: Create Permalink for Title and Date in Custom Archives/Category ResultsAm I posting incorrectly? Am I blacklisted? Does no one want to help me? π
Resolved:
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); the_archive_description( '<div class="taxonomy-description">', '</div>' ?>Resolved.
In case anyone else runs into this problem:
Since I had custom loops calling 6 results for archives, categories and search results at a time and only 1 result for blog posts this was causing an issue with the customizer amount of posts to display.
That number needs to match your custom number of 6, not 1.
Forum: Fixing WordPress
In reply to: Mobile Content Not ClickableResolved.
Forum: Fixing WordPress
In reply to: Show multiple excerpts on archive pages & NOT homepageI have done this:
With the Settings->Reading Blog pages show at most at 5, using the WordPress Default theme, in wp-content/themes/default/index.php, just before this line: <?php if (have_posts()) : ?>
add this to cause one (1) post on the ‘index’ posts display:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('showposts=1&paged='.$paged); ?>Forum: Fixing WordPress
In reply to: Show multiple excerpts on archive pages & NOT homepageSorry, my child theme is based off of twenty sixteen. Thank you!
Resolved.
In case anyone is trying to do this here is my final step!
So I used the steps in my prior post linking to that article about showing just the excerpts. THEN:
Create a page template front-page.php
<?php /* Template Name: Homepage */ ?> <?get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php $postslist = get_posts('numberposts=1'); foreach ($postslist as $post) : setup_postdata($post); ?> <div class="post"><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content() ?> </div> <?php endforeach ?> </main><!-- .site-main --> </div><!-- .content-area --> <?php get_sidebar(); ?> <?php get_footer(); ?>Switch in Reading Settings to use a static FrontPage and select this template.