Paul
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot access dashboardThanks, that worked! ??
Still quite annoying that I have to do this, but at least I now know I can access the dashboard when I like.
Thanks again for your help, and if you ever find out what’s affecting the redirect, let me know!
Forum: Themes and Templates
In reply to: [Superhero] Make theme unresponsive?By the way here is my site if it helps…
Forum: Themes and Templates
In reply to: [Superhero] Full screen width header imageIs there not an easy way to do this in the admin without having to get into the php? I assumed as the example site had it displayed it would have been one of the main options…?
Forum: Themes and Templates
In reply to: [Superhero] Full screen width header image…And sorry, yes that was the image in question!
Forum: Themes and Templates
In reply to: [Superhero] Full screen width header imageHi, thanks for getting back to me.
I’d like it to be in the scrollable container area below, but outside of the 960px container (stretching to full screen).
I figured hardcoding could be an option and I would like to know how to do this, so your help would be appreciated on this front! However, since I like this theme and will probably use it again, I’d also like to know how to add it in a way that provides more flexibility. Would this require php, or can it simply be done in the admin?
Thanks again
Forum: Themes and Templates
In reply to: header image position on mobile versionJust figured out media queries. Amazing.
Forum: Plugins
In reply to: Using 'more' tag not workingSorry, thought the last message didn’t get through, hence the duplication…
Forum: Plugins
In reply to: [WP Video Lightbox] Video plays for 3 sec thens stopsOops, I had slideshow checked. Unchecked it and it works fine!
Forum: Fixing WordPress
In reply to: Embed youtube video not workingThanks Jan, tried it and no luck unfortunately. At least this time the url isn’t just appearing as plain text. But it’s just blank – no video embedded…
Forum: Fixing WordPress
In reply to: Embed youtube video not workingOk… well it still doesn’t work!
I’ve tried pasting the url into the Add Media thing (in visual editor), and this works but only gives me the option to have a text hyperlink, and then it will take me to the page.
I’m trying to use the Responsive Lightbox plugin, which says you need to embed the video into the page and it will automatically make a lightbox pop-up for it.
Regardless of the plugin, I have read that you’re WordPress is supposed to automatically embed videos when you just add the url.
Very confused!
Forum: Fixing WordPress
In reply to: Embed youtube video not workingWhen I load the video in youtube, the url that comes up is the one I initially put. Also the WordPress Support page suggests a similar syntax (ie, including
watch?v=
and&safe=active
…Forum: Fixing WordPress
In reply to: Embed youtube video not workingStill no joy. Is there supposed to be a dot in the middle of ‘tube’?
Forum: Fixing WordPress
In reply to: Embed youtube video not workingWow, thanks for the amazingly fast response! This is the link I’m adding:
Forum: Fixing WordPress
In reply to: Adding footer sidebar}
…sorry there is a closing brace there as well, forgot to copy it in ??
Forum: Fixing WordPress
In reply to: Adding footer sidebarHere is the relevant code in functions.php (italics indicate what I have added):
function superhero_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'superhero' ), 'id' => 'sidebar-1', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h1 class="widget-title">', 'after_title' => '</h1>', ) ); } add_action( 'widgets_init', 'superhero_widgets_init' );
function my_register_sidebars() { /* Register the 'primary' sidebar. */ register_sidebar( array( 'id' => 'primary', 'name' => __( 'Primary' ), 'description' => __( 'A short description of the sidebar.' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) ); /* Repeat register_sidebar() code for additional sidebars. */
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]