Somegirlwitha.com
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Imported “personal” demo, but no slideshow?I’m only using the default recent posts for front page. Where does it need to go?
Forum: Themes and Templates
In reply to: [OceanWP] Imported “personal” demo, but no slideshow?Ah, yes, sorry. All plugins installed.
Do I need to put the shortcode somewhere or should it automatically show up?Forum: Themes and Templates
In reply to: [Hoffman] Custom post content for quotesNo problem, thanks for your work!
Forum: Themes and Templates
In reply to: [Hoffman] Custom post content for quotesFigured it out.
Some code needs to be changed in functions.php.
looks like the author’s using cd_meta_box_quote_content and hoffman_cd_meta_box_quote_content that’s messing up the quotes and also the video.
Here’s what my new code looks like starting around line 444:
// Add and save meta boxes for posts add_action( 'add_meta_boxes', 'hoffman_cd_meta_box_add' ); function hoffman_cd_meta_box_add() { add_meta_box( 'post-video-url', __('Video URL', 'hoffman'), 'hoffman_cd_meta_box_video_url', 'post', 'side', 'high' ); add_meta_box( 'post-quote-content-box', __('Quote content', 'hoffman'), 'hoffman_cd_meta_box_quote_content', 'post', 'normal', 'core' ); add_meta_box( 'post-quote-attribution-box', __('Quote attribution', 'hoffman'), 'hoffman_cd_meta_box_quote_attribution', 'post', 'normal', 'core' ); } function hoffman_cd_meta_box_video_url( $post ) { $values = get_post_custom( $post->ID ); $video_url = isset( $values['video_url'] ) ? esc_attr( $values['video_url'][0] ) : ''; wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' ); ?> <p> <input type="text" class="widefat" name="video_url" id="video_url" value="<?php echo $video_url; ?>" /> </p> <?php } function hoffman_cd_meta_box_quote_content( $post ) { $values = get_post_custom( $post->ID ); $quote_content = isset( $values['quote_content'] ) ? esc_attr( $values['quote_content'][0] ) : ''; wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' ); ?> <p> <textarea name="quote_content" id="quote_content" class="widefat" rows="5"><?php echo $quote_content; ?></textarea> </p> <?php } function hoffman_cd_meta_box_quote_attribution( $post ) { $values = get_post_custom( $post->ID ); $quote_attribution = isset( $values['quote_attribution'] ) ? esc_attr( $values['quote_attribution'][0] ) : ''; wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' ); ?> <p> <input name="quote_attribution" id="quote_attribution" class="widefat" value="<?php echo $quote_attribution; ?>" /> </p> <?php }Forum: Fixing WordPress
In reply to: Help to create a first wordpressThere is a lot of information here:
for plugins: https://ww.wp.xz.cn/plugins/
for themes: https://ww.wp.xz.cn/themes/
Forum: Fixing WordPress
In reply to: Border around image with linkCan you try this?
a:link img {border: 1px solid #036;}Forum: Fixing WordPress
In reply to: Automatically link image to post urlThe Link To settings determine the URL/web address to which the image will be linked when clicked on by a visitor to your site. You can specify the following image link settings:
Attachment Page: Links your inserted image to its WordPress media attachment page.
Media File: Links your inserted image directly to the original, full-size version of the file.
Custom URL: Allows you to set a custom link URL for your inserted image to link to when clicked.
None: This setting will remove the link completely, rendering the image “un-clickable”.You can probably just insert the URL to the post in the Custom URL field.
Forum: Fixing WordPress
In reply to: Single page feedare you trying to combine feeds?
have you tried yahoo pipes?Forum: Themes and Templates
In reply to: [Twenty Thirteen] Add images from Flickr?From flickr:
The HTML code to embed a photo in a web page that you used to find on the All Sizes page is in the Share menu on the photo, to the left of the More menu.You might have to look for the code that links to a different size.
Forum: Themes and Templates
In reply to: [Pinboard] How to add date/time of post?Forum: Fixing WordPress
In reply to: Can you see the menu on mobile?I’m on the S3 and I see the menu at the top.
Forum: Themes and Templates
In reply to: trying to customize comments_templatecomments_template() is located in wp-includes/comment-template.php
is that what you’re looking for?
Forum: Themes and Templates
In reply to: trying to customize comments_templatefor each input field, you should be able to change the value…
<input type="text" name="comments box" value="Write your comment here">is that what you’re looking for?
Forum: Plugins
In reply to: [Comment Guestbook] Will Comment Guestbook work on blog post "page"?What exactly are you trying to show on your front page of your site?
You can use a static home page, see here: http://codex.ww.wp.xz.cn/Settings_Reading_Screen
Forum: Plugins
In reply to: [Social] Social not successful Broadcasting post for FacebookI disconnected my fb account, re-authorized and it seems to work now.