Daniel Stopka
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to Change Post Title Font Sizeare you sure, that it is properly saved, as I cannot see it in css on page, there is only:
/* * ---:[ custom CSS ]:--- */ .custom.home .headline_area { display: none; } .custom.home .full_width > .page { background: black; } .entry-title a { font-size: 80px; }
Forum: Fixing WordPress
In reply to: Unable to Change Post Title Font Sizewhere did you put the code?
Forum: Fixing WordPress
In reply to: Unable to Change Post Title Font Sizehi, you need to address elements correctly, so for “Journals” it is:
#site_title a { font-size: 40px; }
Or if you meant “Volunteers”, which is title of the post, use:
.grt .headline { font-size: 40px; }
- This reply was modified 7 years, 10 months ago by Daniel Stopka.
Forum: Fixing WordPress
In reply to: Added Wordfence security plugin- Website Slow!I’m afraid that your site is still infected: HTML/ScrInject.B troyan horse which can be reason of site being so slow… I’m not expert of cleaning site, so maybe will somebody add some suggestions…
Forum: Fixing WordPress
In reply to: Reducing the size of header in Spotter themeeasy, quick solution is to push content a little bit lower with a CSS code. You can add it to custom CSS in your theme. I’m assuming, that there is option in theme, that allows you to add custom CSS…
#outer-wrapper #page-canvas { margin-top: 104px; }
Forum: Fixing WordPress
In reply to: Recent Comments Widgetdirty way is to hide it using CSS…
maybe better approach would be to create your own widget, actually just copy WordPress default recent comments widget code from class-wp-widget-recent-comments.php to themes functions.php for example, rename class name and widget display name (line 31 original file) and then change output to whatever you like… “on” word is on line 116 in original file…
after that you need of course register your new widget using
add_action( 'widgets_init', function(){ register_widget( 'My_Widget_New_Name' ); });
and then you should have a new widget in WordPress admin area and you can control the output…
OK, great, you need to activate a child theme to make it work in Appearance -> Themes, where you select child theme… But it is not relevant, when you solved your problem already…
Hi,
1) yes, replicate directory structure
2) yes, use all of the code and then make changes, as the file in parent theme will be overriden…
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove YITH PLUGINS from admin menuhi, just came to the same problem, wanted to hide yith panel for shop manager role, I solved like this:
if ( current_user_can( 'shop_manager' ) ) { add_action( 'admin_init', 'yith_remove_menu', 999 ); function yith_remove_menu(){ remove_menu_page( 'yit_plugin_panel' ); // hide yit_plugin_panel } }