Big Impact Design
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Menu not working on Genesis 2I don’t know enough php to know what to look for in the framework as regards the footer and header, so best I give you access. Drop me an email to timbaggaley at gmail dot com, and or I’ll email you.
If my googling skills are good you are in the green fields of Surrey, yes?
I’m in Brockley, the Lewisham posh-side…
TimForum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Menu not working on Genesis 2Hi Peter,
Sorry I must have missed the notification on your first reply. You can see the site I am testing on at: http://timbaggaley.co.uk/genesis2/ – the plugin is installed but I can get it to show only in my desktop browser if I am logged in as administrator. If I am not logged in, your menu does not show, and it does not show on my Android phone.
If you need a login email me at timbaggaley at gmail dot com and I’ll set up access for you.
Many thanks,
Tim, Saaaf Lonnon (innit)Forum: Fixing WordPress
In reply to: I have made over 20 child themes – this one won't workHi Rob,
I can’t help you I’m afraid, I’m in exactly the same boat, so I’m posting to be in the loop. Obviously, if I have any luck I’ll let you know.
Tim, London
Hi Alex,
I realise that, it’s just that your free version does not even do that much. If you look at this link: http://timbaggaley.co.uk/sketch/ you’ll see that my test twitter feed works in both the straightforward Twitter timeline feed and in several plugins except for yours. The free install of your plugin returns the error message: The connection to twitter has returned an error. Please try again later.
Clearly, twitter is fine. Is your free version of your plugin not at least supposed to return a basic feed?
Forum: Plugins
In reply to: Twitter feed without an app?Hi,
Thanks for your response. So if I create the app in my own twitter account, I can then use it to feed any number of other twitter accounts in to different websites, so long as I am aware of the total tweet traffic being routed through my app?
Forum: Plugins
In reply to: [SoundCloud Is Gold] 404 – Oops, we couldn’t find that playlistYup, same thing here. I can use SoundCloud’s wp shortcode to put my play list in but if I go via your plugin it says it can’t find the music.
Well Stefan,
The page on my site that sees the biggest traffic is the front page – obviously, as this is where most visitors arrive. When visitors come into the site, they will then find that on widget display of the most popular pages, the number one link takes them straight back where they’ve just come from.
The widget does not display the pages most popular for rich and engaging content, it displays the pages seeing the most traffic. Without the ability to exclude the front / landing page from the ‘most popular’ count, there’s a danger it gets trapped in a positive feedback loop and no other page will ever occupy the number one spot.
That is why I don’t want certain pages to be counted in the ‘most popular’ widget.
Tim, London
Exactly the same request! I want to be able to exclude the front page, the blog list pages and contact page. I just want the most read list to show single posts and specific content pages.
Thanks
Tim, LondonForum: Fixing WordPress
In reply to: [Plugin: Jetpack] No sharing statsI have the same problem. Sharing activated and working, but no sign of the sharing stats on my stats page.
Tim, LondonForum: Fixing WordPress
In reply to: How to add a sticky sidebarI can do this, are you still looking for a fix? I don’t know how to do it as a plug-in / widget-thing, I do it by handcoding but i can give you some copy n paste to set this up. I use a bunch of this on my website at: http://graphicviolence.co.uk – resize your browser window and watch the coffee cup and chocolate biscuit graphics. These images sit in divs with absolute positioning values. If you need more just say.
t
LondonForum: Themes and Templates
In reply to: CSS styling photos and captions problem@alchymyth
You fixed it – big thanks!
FYI: the code you posted for me on pastebin is missing the single quotes around <p class=”wp-caption-text”> so when I first c&p’d it I got a syntax error. A tiny detail but worth pointing out for the benefit of PHP dunces like me.I’ve used your fix in two different themes with full success, one being a theme I generated with Artisteer – thank you. I’ll make a contribution to your coffee fund.
If you want to see the result on my test page, you can see it all fixed on http://timbaggaley.co.uk/photo/
Forum: Themes and Templates
In reply to: CSS styling photos and captions problemThe text-indent doesn’t work for me in .wp-caption p.wp-caption-text, I can only get it to work in .wp-caption where it moves the image too – and then I’ve realised it only indents the first line of text so even if it worked, it would be no use on captions running to more than two lines – ooops.
As you first said in your first reply, fixing the functions.php is the real cure. My problem is i do not know php. Where exactly do I insert the missing code:
. do_shortcode( $content ) . '<p class="wp-caption-text">' . $caption . '</p></div>';Into your code:
} endif; add_shortcode('wp_caption', 'slim_img_caption_shortcode'); add_shortcode('caption', 'slim_img_caption_shortcode'); function slim_img_caption_shortcode($attr, $content = null) { // 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) . '" '; $frame_width = 0; // frame width in pixels per side // return '<div ' . $id . 'class="wp-caption ' . esc_attr($align) . '" style="width: ' . ( 2 * $framewidth + (int) $width) . 'px">' . do_shortcode( $content ) . '<p>' . $caption . '</p></div>'; }I’ve tried pasting it in in various places but I’m guessing and I keep getting syntax errors.
Thanks
tForum: Themes and Templates
In reply to: CSS styling photos and captions problemYes, copy and paste worked a treat. I literally pasted your code in at the end of the functions.php file – and it did the trick, almost. The problem I now have is that with the new functions.php, the WordPress core no longer uses the .wp-caption p.wp-caption-text div to hold the photo caption, it now places the caption directly inside the .wp-caption div that holds it and the photo img. This means i am unable to set an indent on the caption without it also indenting the photo too – even if I use the text-indent property, this value also indents the photo.
I need functions.php to place the caption in a div separate to the .wp-caption div so I can set the text-indent or padding value without it affecting the photo. I don;t know how to fix the functions.php to do this, do you?
Many thanks
tps: I ran your fix on my problem page on http://timbaggaley.co.uk/photo/ and the captions now sit inside the red .wp-caption div. The .wp-caption p.wp-caption-text div which was green and held just the caption has disappeared…
Forum: Themes and Templates
In reply to: CSS styling photos and captions problemAh, that explains why I could not fix this with CSS tweaking. Forgive my ignorance but I am not familiar with php coding; do I simply copy and paste your code in to my functions.php file? Or do need to edit and or replace any of the existing code in the functions.php file, or paste your code in in any particular way?
Many thanks for your swift advice.
Tim