Jump to content

rivermobster

Administrators
  • Posts

    137
  • Joined

  • Last visited

Everything posted by rivermobster

  1. Remove result count... Functions.php // Remove the result count from WooCommerce remove_action( 'woocommerce_before_shop_loop' , 'woocommerce_result_count', 20 );
  2. rivermobster

    WooCommerce

    Remove default sort box... Add to functions.php /** * Remove sort order box */ remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
  3. -Add to functions PHP: //*Add LH header widget genesis_register_sidebar( array( 'id' => 'header-left', 'name' => __( 'Header Left', 'wpsitesdotnet' ), 'description' => __( 'Header left widget area', 'wpsitesdotnet' ), ) ); add_action( 'genesis_header', 'wpsites_left_header_widget', 11 ); function wpsites_left_header_widget() { if (is_active_sidebar( 'header-left' ) ) { genesis_widget_area( 'header-left', array( 'before' => '<div class="header-left widget-area">', 'after' => '</div>', ) ); } } -Add the following CSS text to a stylesheet: .site-header .header-left { float: left; width: 30%; overflow: hidden; } .site-header { padding-top: 0px; } -Change line 1047 to 0px
  4. //*Reposition navigation menu remove_action( 'genesis_after_header', 'genesis_do_nav' ); add_action( 'genesis_before_header', 'genesis_do_nav' );
  5. //* Remove the site title remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
  6. //* Remove the site description remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
  7. Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file. Below is the code to remove the entry title on your site: //* Remove the entry title (requires HTML5 theme support) remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
  8. Apperance > Customizer > Theme Settings > Header/Footer Scripts > Header Scripts <meta name="theme-color" content="#014877"/> <a name="top"></a>
  9. Appearance > Customize > Additional CSS a { text-decoration:none!important; border-bottom: none!important; }
  10. Are here for my reference, so I can get to them easily. That is all...
  11. Page ID is the number in the URL = 459 body.page-id-459 { background-image: url(https://satelliteadvantage.net/wp-content/uploads/2019/07/firman_flag.jpg); background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }
  12. rivermobster

    Nav Edits

    Body Navigation text links: 184 to 194 < changes here apply to all nav elements Genesis Navigation tex links: 1112 __________________ To change underline color add: text-decoration: underline; text-decoration-color: #71c0be;
  13. rivermobster

    Menu Icons

    <span class="fa fa-phone"></span> https://fontawesome.com/v4.7.0/icons/ WP Admin > Appearance > Menus and open the custom menu item you want to add the icon to. Add the HTML for the icon to the Navigation Label setting, and adjust it as desired.
  14. Page Edits: 803 Remove Titles Font-size 0px 576 Remove Top Margin padding-top: 0px; 1252 Set Inner to Clear background-color: clear; 1252 Remove Bottom Margin margin-bottom: 0px; 1253 Remove Inner Padding padding: 0px 0px; Remove space under NAV 804 .entry-title { font-size: 0px; font-size: 0rem; margin: 0 !important; <--- add this line Title edits: 800 Header Design: 1030 background color 1071 Site title color 1088 Site description color 1132 Navigation text color 1143 Navigation hover color color: white !important; 1144 Remove Underline: text-decoration: none; 1049 Remove description and center title top to bottom: margin-top: 10px; <---- add this line 1085 Set description fonts to 0 1105 Header Widget aera Nav Menu Padding 1143 padding: 20px 20px; Nav Menu Background: 1237 background: linear-gradient(to top, white, grey); border-top: 0px solid #eee; Content Background 1261 Site Footer: 1449 background: linear-gradient(to top, grey, white); border-top: 0px solid #eee; padding: 15px 0; Content aera 1254 .entry remove background-color: or change it to something else Blog Header 742 CHANGE FONT... Body font: 162 Headings font: 263 Change Theme Font 52 Theme functions (functions.php) wp_enqueue_style( 'genesis-sample-fonts', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700', array(), CHILD_THEME_VERSION ); wp_enqueue_style( 'genesis-sample-fonts', '//fonts.googleapis.com/css?family=Raleway:500', array(), CHILD_THEME_VERSION ); wp_enqueue_style( 'genesis-sample-fonts', '//fonts.googleapis.com/css2?family=Hepta+Slab&display=swap', array(), CHILD_THEME_VERSION ); Standard //fonts.googleapis.com/css?family=Magra&display=swap @IMPORT //fonts.googleapis.com/css2?family=Hepta+Slab&display=swap CSS --> font-family: 'Raleway', sans-serif; #eee /* Creating a full width header --------------------------------------------- */ .site-header { background-image: url(/wp-content/uploads/2016/03/cropped-header_logo3.jpg); background-repeat: no-repeat; background-position: center center; } Adjust nav menu position 1133 .genesis-nav-menu .menu-item { float: left; list-style-type: none; margin-bottom: 0; padding-bottom: 0; text-align: left; } Remove blog box 756 background-color: #fff; <----remove #003366 #004282 background: linear-gradient(to top, #690001, #ff0000); #c3251d < teal green background: -webkit-linear-gradient(180deg, #71c0be, #d6ece7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: #71c0be; #d6ece7:
  15. Apperance > Customize > Theme Settings > Header/Footer Scripts <meta name="theme-color" content="#317EFB"/> Black = #000 White = #fff <link rel="manifest" href="/manifest.json">
  16. Customise > Theme settings > Header/Footer Scripts Add the following to the Header script box: <a name="top"></a> Appearance > Widgets > Footer 3 Add SiteOrigin Editor Add the following in the Text mode: <p style="text-align: center;"><span style="color: white;"><a style="color: white; text-decoration: none;"href=""#top">To the top ↑</a></span></p> Note: Both colors must be the same!!! <p style="text-align: right;"><span style="color: #014877;"><a style="color: #014877; text-decoration: none;"href=""#top">To the top ↑</a></span></p>
  17. rivermobster

    Drop Shadow

    box-shadow: 5px 5px 10px grey; Line 1417 for sidebar widgets
  18. rivermobster

    SSL

    https://www.theverge.com/2018/2/8/16991254/chrome-not-secure-marked-http-encryption-ssl Starting in July 2018, Google Chrome will mark all HTTP sites as “not secure,” according to a blog post published today by Chrome security product manager Emily Schechter. Chrome currently displays a neutral information icon, but starting with version 68, the browser will warn users with an extra notification in the address bar. Chrome currently marks HTTPS-encrypted sites with a green lock icon and “Secure” sign. Google has been nudging users away from unencrypted sites for years, but this is the most forceful nudge yet. Google search began down-ranking unencrypted sites in 2015, and the following year, the Chrome team instituted a similar warning for unencrypted password fields. The Chrome team said today’s announcement was mostly brought on by increased HTTPS adoption. Eighty-one of the top 100 sites on the web default to HTTPS, and a strong majority of Chrome traffic is already encrypted. “Based on the awesome rate that sites have been migrating to HTTPS and the strong trajectory through this year,” Schechter said, “we think that in July the balance will be tipped enough so that we can mark all HTTP sites.”
  19. Are you using Thunderbird to access your account? Probably not. If you want to though, here are the instructions to set it up... Thunderbird Setting up Mail in Thunderbird
  20. Are you using gMail to access your account? Probably not. If you want to though, here are the instructions to set it up... Gmail Configure Gmail To Send & Receive Mail from External Account
  21. Are you using Microsoft mail on your phone or on your computer? Click the link below and find the instructions you need. You'll make the same two changes I've shown you above. Don't touch anything else!!! Microsoft Mail Set Up Mail in Microsoft Mail
  22. Are you using Outlook, on your phone or on your computer? Click the link below and find the instructions you need. You'll make the same two changes I've shown you above. Don't touch anything else!!! Microsoft Outlook Set up Email in Outlook Note: After I changed the IMAP and SMTP servers in Outlook 365 for my desktop, it had to resync everything I had in Outlook. It took almost ten minutes! So don't worry if it takes awhile to complete the sync, after you make the change.
  23. Hate to read? I did screen shots of two the settings that need to be changed on my Samsung S8, so you can see the actual changes. Once you are looking at your email content, tap on the hamburger menu: That should bring you to a page that looks like this. Tap on the settings button: That will bring you to your settings page. Tap on your email account. Then you'll see this page: Scroll down to the bottom of above page, at the bottom, you'll see Server Settings. Tap Server settings. See the IMAP setting that says dime200.dizinc.com below? Change it to YOUR domain name. DO NOT USE rivermobster.com! Change it to whatever your domain is. Then scroll down a bit more, and find the SMTP setting... Change it to YOUR domain name. DO NOT USE rivermobster.com! Change it to whatever your domain is. After you've made the changes, click Done (look at the last screenshot above). That's it, you're done!!! Nice work!!!
  24. Now to the tricky part (not really, it's easy)... If you were using the email client on your phone to access your email, you only have to make TWO changes. Go to your clients email settings and find the server settings page... The incoming server settings (IMAP) and outgoing server settings (SMTP) are the settings you'll need to change. The old server settings were: dime200.dizinc.com Change both incoming and outgoing server settings to your current website URL! Easy, right? For example, replace dime200.dizinc.com with yourwebsitename.com or .net That's it, you're done! It's time to enjoy your day. Or take a nap, whatever comes first for you. Need more help?? Here are more detailed instructions for whatever phone you might have: iOS Step by Step Guide to Configure Email on iPhone Android Set up Email on Android Apple Mail Setting Up Mail in Mac Mail
×
×
  • Create New...