amykw105
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pinterest ProblemHello,
I have just tried posting your content to Pinterest and it’s working fine. It worked using the pin-it button and when I put your url into Pinterest. It’s possible it was just a glitch with Pinterest.
Were you logged into your WordPress at the time? Try logging out and then pinning your content.
Forum: Fixing WordPress
In reply to: Better rendering of posts shown outside of wordpressHello,
Unfortunately there isn’t anything you can do about how your content appears on another site. Blogarama is a site that just takes RSS content from various blogs and outputs it on their own domain, because RSS feeds can be subscribed to by anyone there is nothing to stop them (or anyone else) from doing this with your content. They don’t have your CSS files so your content will appear differently than on your site.
Blogarama puts a few links back to your site but I would recommend putting some more links into your post content that links back to your site. This gives anyone using blogarama multiple opportunities to get back to your site.
Sorry I couldn’t help more!
Forum: Fixing WordPress
In reply to: removing date/author info from homepage slider imagesHello,
To hide the date and author info from the featured content slider add the following into the custom css box (in the admin area go to themes/customise/additional css):
.home .hero-content-wrapper .entry-meta{ display: none!important; }If you want to remove the links you will need to edit the php file. The one you need is /components/post/content-featured.php
Just remove the opening and closing tag from around the h2 title tag (roughly line 35). Hope that helps!
Forum: Fixing WordPress
In reply to: Blog Page CustomizingHello,
If you go to Appearance->Widgets you will find those under a section called Content Sidebar. To get rid of them just click, hold and drag them out of the box, they will disappear from the sidebar.
If you ever want them back you can drag them back into the Content Sidebar from the Available Widgets section.
Forum: Themes and Templates
In reply to: [Longform] How to insert dates to entriesHello,
You don’t need a plugin but if you are willing to edit the code they can be added in. Go to the theme editor and select template-tags.php to edit. Scroll down roughly halfway and find the line // Set up and print post meta information..
Replace the line directly below it with:
printf( '<span class="byline">' . date('d-m-Y', strtotime($post->post_date)) .' / <span class="author vcard">BY <a class="url fn n" href="%4$s" rel="author">%5$s</a></span></span>',Make sure you click Update File. This will print the date just before the author on posts and post listings.
Hello,
If you go to the theme settings there will be an ‘advanced options’ or ‘custom css’ area. In here you can copy/paste the following code:
.tc-post-list-grid .expanded.hover .entry-summary, .tc-post-list-grid .hover:not(.expanded) figcaption { background-color: darkred; }Change darkred to the colour you would like the hover effect to be.