jankdc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to upload pictures since 4.4.1Subscribed, I have the same problem.
Forum: Themes and Templates
In reply to: [Simone] Social Menu Items Title on hoverOk, I figured it out. I needed to fill in the “Title Attribute” in the WordPress menu form.
Forum: Themes and Templates
In reply to: [Simone] Social Menu Items Title on hoverIt’s never worked for me. I put this in my child theme and it puts the words in the menu for each item. It’s similar but not exactly what I wanted.
.menu-social li a[href*="facebook.com"]:hover:after {content: " Facebook"; }
Forum: Themes and Templates
In reply to: Adding Opacity to sidebar background in Twenty FifteenThis worked really well to make the background picture be seen on the left side of the page. Unfortunately, i used a darker image with white lettering and when I shrunk browser or used a phone, the title wouldn’t show up against a white background.
What I did was in addition to what angoo recommended, enter
.site-header { background-color: transparent; }
into my child theme. Now the header, when it is shrunk to table/mobile size is transparent also.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Supress add-to-any on Print PageWorked great. Thanks!
I switched and used another plugin and with the author’s help got it.
What I did:
I used Related Posts for WordPress Pluginand put
add_filter( 'rp4wp_append_content', '__return_false' );
after line 185 of wp-print.php.It’s working great now.
Thanks!
Forum: Plugins
In reply to: [Related Posts for WordPress] Remove Related Post from Print PageI finally got it. For others I put:
add_filter( 'rp4wp_append_content', '__return_false' );
Right after line 185 in wp-print.phpI needed to not have the
<?php
in the code.
Thanks!Did you figure this one out?
Didn’t work. Thanks though.
Forum: Themes and Templates
In reply to: [Simone] My content is shifted to the leftWell I disabled minify css and fixed it. I wonder if I should uninstall total cache plugin?
Forum: Themes and Templates
In reply to: [Simone] My content is shifted to the leftI’m convinced that it is something in my child theme.
functions.php contain:<?php add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style'); function enqueue_parent_theme_style() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); }
style.css contains:
/* Theme Name: Simone Child Theme URI: https://spinalalignment.com/public_html/wp-content/themes Description: Simone Child Theme Author: Michael Polsinelli Author URI: https://spinalalignment.com Template: simone Version: 1.0.0 License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: responsive-layout, accessibility-ready Text Domain: twenty-fifteen-child */ .menu-social li a[href*=tel]::before { content: '\f095'; } .menu-social li a[href*="contact"]::before {content: '\f003'; } .menu-social li a[href*="location"]::before {content: '\f041'; }
I really think it is a simple stupid mistake that I made. Any help would be greatly appreciated.
Forum: Themes and Templates
In reply to: [Simone] My content is shifted to the leftI notice that when I use the customize function in wordpress. It shows up just fine.
I was using the plugin autooptimize which conflicted with it. It’s working now.
Forum: Themes and Templates
In reply to: [Simone] Header HeightHi,
Even when changing that figure 300 to say 100, even in a child theme it does not honour / render the change.
This change includes changing the max-height valuable in the same file.
Any other suggestions?
Thanks
I’m having the same difficulty. I copied the inc file into my child theme and in the cusom-header.php file, I replaced 300 with 220 and there was no change.
Forum: Plugins
In reply to: [Custom Menu] [Plugin: Custom Menu] Error on line 39?Ok, I fixed it. What I did (for the next person) is go into my control panel for my site. and open the /wp-content/plugins/custom-menu/custom-menu.php file in an editor and added
//
before the text on line 39 (which starts: add_action(‘init’, function() { load_plugin_textdomain(‘custom-menu’
Line 39 now starts like this:
// add_action(‘init’, function() { load_plugin_textdomain(‘custom-menu’