jd100
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Oblique] Lost the masonry way to a vertical lineAh, ok. Thank you!
Forum: Themes and Templates
In reply to: [Oblique] Lost the masonry way to a vertical line@jose Castaneda: That worked, thank you! I added the following to my child theme:
wp_enqueue_script( 'oblique-masonry-init', get_template_directory_uri() . '/js/masonry-init.js', array('jquery', 'masonry'), true );Hopefully this will get fixed by the theme authors soon.
P.S. Out of curiosity, how did you get the code to show up on your forum post like you did? The
backticksthing doesn’t do that.Forum: Themes and Templates
In reply to: [Oblique] Lost the masonry way to a vertical lineThis happened to me, too, after upgrading to WP 4.6. How do we fix it?
Forum: Plugins
In reply to: [Rename wp-login.php] SSL and new UpdateI’m sending you info via email now.
Forum: Plugins
In reply to: [Rename wp-login.php] SSL and new UpdateAny update on this? I realize it’s only been a couple of days since your last response, but I wanted to let you know it’s affecting multiple sites I manage as well … version 2.2.3.
Great plugin, by the way! Thanks for creating it.
Thanks. The problem is happening on multiple domains. The ticket number is: 80795326.
Thanks for the super quick response, David! That kind of support is really helpful.
I forwarded your message to DreamHost support and will look into some of your suggestions. I’ll respond here again if I come up with anything of value.
Forum: Themes and Templates
In reply to: [Bouquet] Adaptive image in headerUPDATE: I think I may have figured it out. I don’t know if this will break something else, but it seems to work for me for now. Any feedback is appreciated.
In the WordPress theme editor, I added the following line to “Theme Functions (functions.php)” in the “Add custom header support” section:
background-size: 100% 100%;I added it directly below:
background: url(<?php header_image(); ?>);My new functions.php custom header support section looks like:
/** * Add custom header support */ if ( ! function_exists( 'bouquet_header_style' ) ) : /** * Styles the header image and text displayed on the blog * */ function bouquet_header_style() { // If no custom options for text are set, let's bail if ( HEADER_TEXTCOLOR == get_header_textcolor() && '' == get_header_image() ) return; // If we get this far, we have custom styles. Let's do this. ?> <style type="text/css"> <?php // Do we have a custom header image? if ( '' != get_header_image() ) : ?> #branding { background: url(<?php header_image(); ?>); background-size: 100% 100%; } <?php endif;Again, I don’t know if this affects other things in a negative way, but it fixed the problem of the header image not scaling.
Feedback is appreciated.
Forum: Themes and Templates
In reply to: [Bouquet] WidgetsI can answer your second question … if you click on the “Dashboard,” you’ll see towards the middle of the page a section entitled “Right Now.” It should tell you what version of WordPress you’re using in that section.
As for your first question, I don’t think the widgets are limited but I’m not sure. What widget are you looking for that you’re not seeing?
Forum: Themes and Templates
In reply to: [Bouquet] Adaptive image in headerI’m also having this problem and would like to learn about a solution. Is there some CSS I can add/change? Something in PHP?