Forum Replies Created

Viewing 15 posts - 1 through 15 (of 47 total)
  • in reply to: Increase Column Span for Primary Blog Post Content #173384
    ovollc
    Member
    Post count: 48

    Now that you have the Swift Framework plugin, what should I do about updates to the single-post.php file? Will the plugin over-write these?

    in reply to: Fonts Not Loading #171009
    ovollc
    Member
    Post count: 48

    Well, I understand now that this is due the being wrapped in a <script> tag.

    Where is the best place to put this CSS include? I can include in the header.php, but that will be overwritten on updates.

    Thanks,

    in reply to: HR Styling inside Column Shortcode #165173
    ovollc
    Member
    Post count: 48

    Any word when the update will hit? Or can you give me the style fix now so we can fix the issue?

    in reply to: HR Styling inside Column Shortcode #164831
    ovollc
    Member
    Post count: 48

    Any when is that anticipated?

    in reply to: HR Styling inside Column Shortcode #164360
    ovollc
    Member
    Post count: 48

    Thank you. Looking forward to the fix. Will you post here, or is this part of an update?

    in reply to: HR Styling inside Column Shortcode #163900
    ovollc
    Member
    Post count: 48

    Ok I’ll just restyle that shortcode and use that then.

    The question still remains of the issue with the DropCap shortcode. Can you address that, please? (see above a few posts)

    Attachments:
    You must be logged in to view attached files.
    in reply to: HR Styling inside Column Shortcode #163842
    ovollc
    Member
    Post count: 48

    I’m using [HR] in other areas. Are you saying I cannot use a standard <HR> TAG?

    in reply to: HR Styling inside Column Shortcode #163552
    ovollc
    Member
    Post count: 48
    This reply has been marked as private.
    in reply to: Load HTTPS for Google Fonts #163551
    ovollc
    Member
    Post count: 48

    Ok, I’ll ensure that’s the culprit.

    in reply to: HR Styling inside Column Shortcode #163120
    ovollc
    Member
    Post count: 48

    Anyone?

    in reply to: HR Styling inside Column Shortcode #163036
    ovollc
    Member
    Post count: 48

    Kyle —

    We had a similar conversation in another support thread. No. I need to use the posts, as this is a blog with a lot of content that’s been migrated to this theme. Thus it’s not realistic to have to try to rebuild every post with the page builder.

    in reply to: HR Styling inside Column Shortcode #162659
    ovollc
    Member
    Post count: 48

    Issue with dropcap shortcode removing paragraph styling:

    Kitchen Essentials: Scales

    The other post with the HR tag in a column is not yet public/published, so I cannot send URL. If you use any of your themes, and place an HR tag in a column created with the columns shortcode, you will see what I mean.

    in reply to: HR Styling inside Column Shortcode #162439
    ovollc
    Member
    Post count: 48

    One more shortcode/style related issue:

    When I use a dropcap shortcode, it removes the paragraph spacing from the paragraph it was used in. (see the image attached that shows two paragraphs without the spacing between paragraphs.

    Can you assist with this as well, please?

    Attachments:
    You must be logged in to view attached files.
    in reply to: Images Appearing Larger than Set #162429
    ovollc
    Member
    Post count: 48

    Ok, well, I figured it out. Seems this is an issue with WordPress core. You can fix by adding the following to your functions.php

    add_shortcode('wp_caption', 'fixed_img_caption_shortcode');
    add_shortcode('caption', 'fixed_img_caption_shortcode');
    function fixed_img_caption_shortcode($attr, $content = null) {
    	// New-style shortcode with the caption inside the shortcode with the link and image tags.
    	if ( ! isset( $attr['caption'] ) ) {
    		if ( preg_match( '#((?:<a [^>]+>\s*)?<img [^>]+>(?:\s*</a>)?)(.*)#is', $content, $matches ) ) {
    			$content = $matches[1];
    			$attr['caption'] = trim( $matches[2] );
    		}
    	}
    
    	// Allow plugins/themes to override the default caption template.
    	$output = apply_filters('img_caption_shortcode', '', $attr, $content);
    	if ( $output != '' )
    		return $output;
    
    	extract(shortcode_atts(array(
    		'id'	=> '',
    		'align'	=> 'alignnone',
    		'width'	=> '',
    		'caption' => ''
    	), $attr));
    
    	if ( 1 > (int) $width || empty($caption) )
    		return $content;
    
    	if ( $id ) $id = 'id="' . esc_attr($id) . '" ';
    
    	return '<div ' . $id . 'class="wp-caption ' . esc_attr($align) . '" style="width: ' . $width . 'px">'
    	. do_shortcode( $content ) . '<p class="wp-caption-text">' . $caption . '</p></div>';
    }
    in reply to: Images Appearing Larger than Set #162428
    ovollc
    Member
    Post count: 48

    I found this, and it looks to be the same issue that I am having:
    http://troychaplin.ca/2012/fix-automatically-generated-inline-style-on-wordpress-image-captions/

Viewing 15 posts - 1 through 15 (of 47 total)