leecrockett
Forum Replies Created
-
Forum: Plugins
In reply to: [HubSpot for WordPress] Settings – Please check the Help Section first.Another vote for me. I hope Hubspot is listening. Having access to the documentation is a basic requirement please.
Forum: Plugins
In reply to: [HubSpot for WordPress] HubSpot Plugin: Error connecting to API – 404Andy, it’s either down again or something else, but this error just appeared for me this morning.
Forum: Themes and Templates
In reply to: [Customizr] remove bullets from listsThanks electricfeet, that did it.
Forum: Themes and Templates
In reply to: [Customizr] remove bullets from listsNope, not fixed. The little arrows are in front of each item and the are indented. Really want to get rid of this.
Forum: Themes and Templates
In reply to: [Customizr] remove bullets from listshttps://globaldigitalcitizen.com/blog/
The lists on the right and in the footer are standard in the theme. I’d just like to remove the bullets and the indents.
Forum: Themes and Templates
In reply to: [Customizr] Feature images in postsThanks Feet!
This is working for displaying it in the posts, but I’d actually like them floated right of the title, not the body of the post. Any ideas?
Forum: Themes and Templates
In reply to: [Customizr] Left/Right image in blog listBrilliant!!
That certainly does the trick. Thanks so much. Still struggling with the featured images, but I know we’ll get there!
Forum: Themes and Templates
In reply to: [Customizr] Feature images in postsThanks, I really appreciate your help, I gave that a try, but it just broke the site. I can’t believe how difficult this is, I thought it would be really easy.
Forum: Themes and Templates
In reply to: [Customizr] Feature images in postsThanks, I just tried that span3, and I don’t know why, but it messes it up. I still don’t have it showing on the top of the page by the title, if you know how, please let me know.
Forum: Themes and Templates
In reply to: [Customizr] Feature images in postsThanks!
It didn’t quite work, there is an extra div in that code I think. I did this and it does work:
<?php add_filter('the_content', 'in_content_thumb'); function in_content_thumb($output) { global $post; if (has_post_thumbnail($post->ID) && (is_single() || is_page())) { ob_start(); the_post_thumbnail('medium'); $image = ob_get_contents(); ob_end_clean(); return ' <div class="thumb-wrapper pull-right"> <span class="round-div"></span>'.$image.'</div>'.$output; } return $output; }
However, I really want the image to the right of the title of the article, not the body of the post. Do you have any idea how to modify this so that on the posts page it appears at the top right, next to the title?
Forum: Themes and Templates
In reply to: [Customizr] Left/Right image in blog listI didn’t get any response from the forum and continued to dig and find this myself. Here is what I did in case anyone else wants to accomplish the same.
1. Copied the file /parts/class-content-post_list.php to my child theme
2. Located the following code starting on line 68:
//Renders the filtered layout for content + thumbnail if ( isset($layout['alternate']) && $layout['alternate'] ) { if ( 0 == $wp_query->current_post % 2 ) { $this -> tc_post_list_content($post_list_content_class, $tc_show_post_list_excerpt); $tc_show_post_list_thumb ? $this -> tc_post_list_thumbnail( $thumb_data , $layout['thumb'] ) : false; }
3. Altered the line:
if ( 0 == $wp_query->current_post % 2 )
to read:
if ( 0 == $wp_query->current_post % 1)
Forum: Themes and Templates
In reply to: [Customizr] Feature images in postsReally could use some help please!
Simply want the featured image to appear in a div, sized and centred and round like on the blog list on every post.
Somebody must know how to do this.
Forum: Themes and Templates
In reply to: [Customizr] Left/Right image in blog listThat does work, thanks. The images do appear on the right, however there is still some evidence of rows. Every second post is slightly indented.
Forum: Themes and Templates
In reply to: [Customizr] Featured image not displayed in postsYes I’d love to know how you got featured images to display on the posts page
Forum: Plugins
In reply to: [Edit Flow] Canlendar doesn't show upI have solved the problem. Thanks for replying. I was running Advanced Access Manager, and it conflicts with almost every plugin. I’ve had to uninstall it. As much as I’d like to be able to change permissions for different users, I’ll have to live with the defaults.
Once removing the AAM, everything works correctly.