ChuckH58
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Can not load the themeSorry, the new format for this website threw me off. Anyway, I did change the limit to 50M and it still did not work, This is how my php.ini(development) looks:
; Whether PHP will read the POST data. ; This option is enabled by default. ; Most likely, you won't want to disable this option globally. It causes $_POST ; and $_FILES to always be empty; the only way you will be able to read the ; POST data will be through the php://input stream wrapper. This can be useful ; to proxy requests or to process the POST data in a memory efficient fashion. ; https://php.net/enable-post-data-reading ;enable_post_data_reading = ON ; Maximum size of POST data that PHP will accept. ; Its value may be 0 to disable the limit. It is ignored if POST data reading ; is disabled through enable_post_data_reading. ; https://php.net/post-max-size post_max_size = 50M
What am I missing here?
- This reply was modified 7 years, 10 months ago by Jose Castaneda. Reason: added backticks for code
Forum: Fixing WordPress
In reply to: No link for iconIt’s the plugin from WordPress plugins section, just type in Menu Icons and it should be the first one . The one authored By: Dzikri Aziz and joshuairl. Very easy to use, it saved me a lot of time because I didn’t have to work with CSS at all.
Forum: Fixing WordPress
In reply to: No link for iconI found an awesome plugin that allowed me to insert my icons from my WordPress media library via the custom link in menus. The only thing I do not like about it is you have to have text in the navigation label area in order for it to show up, so instead of using a word I used a “.” being the smallest character. It looks funny, but it works. The plugin is called “Menu Icon”. See how I used it here: https://bagelsnbeyond.com
Forum: Fixing WordPress
In reply to: No link for iconI want to keep the image and have it link to the facebook page. The problem is not the image, it’s that there is no link.
Forum: Themes and Templates
In reply to: [Bistro] Navigation Bar and Logo alignment.The way the header is set up now is the logo is in the middle on top of the row of navigation links. Go to https://bagelsnbeyond.com to see what I mean. I have not seen even one theme in a WordPress format where it has the logo in the middle and top and set between the menu links. Why is no one doing this?
Forum: Fixing WordPress
In reply to: Responsive changesI was hoping to avoid all this. Yes, I do have the Simple Custom CSS plugin, an amazing tool, and I do know how to find what I need using “inspect” after right mouse click, but it’s a jungle and very time consuming. I hope I can do this. I really want the site to look good on all devises and not break. Thank you for your advise.
Forum: Fixing WordPress
In reply to: Responsive changesI’ll look into it, thank you. Does that work on all themes?
Forum: Fixing WordPress
In reply to: Navbar and footer reductionThank you I will try that.
Forum: Fixing WordPress
In reply to: Sidebar in PostsThis Might have been a wrong thing to do but I wanted to get rid of those two items from the pages. I went to the Editor, then to the Parent Theme, then to Sidebar.php and just deleted all of the content which only had the div id’s for the “archive” and “meta” in it. That solved my problem. So far the site is still up, not broken. Yeay!
Forum: Fixing WordPress
In reply to: Sidebar in PostsOK, I figured out how to get rid of the sidebar in “Post Pages”. I went to the editor, to the “Parent Theme”, to “Single Post.php” and changed <div id=”primary” class=”content-area”>… to…. <div id=”primary” class=”full-width content-area”>
This took the sidebar off of the post pages….but, the “Archives” and “Meta” just moved to the bottom of the page,,,,,so now what do I do to get rid of them all together?Forum: Fixing WordPress
In reply to: Sidebar in PostsThank you, this did give me the “Page Attributes” for post pages but there was no option to change the template to “Full Page with no sidebar”,just just a top section with page attributes to choose and the “Discussion” section at the bottom to choose “Allow Comments”, “Allow Tickbacks and Pingbacks on this page”. What I really wanted was to not have a sidebar at all (Archives-October 2016, and Meta-Site Admin, Log Out). How do I get rid of these sidebar items?
Forum: Fixing WordPress
In reply to: Footer errorI copied and pasted your php into my footer.php file replacing what was there and changed the “my text in footer”section to copyright info.
It works fine now, no error! Thank you so much.
You are awesome!Forum: Fixing WordPress
In reply to: Footer errorIs there a way for me to add the “function” to the function.php file? Is it generic or theme specific?
I did not see a function for the footer, just the header.
Here is the php in the function.php file:` <?php
/* Enque Google Fonts */function vryn_restaurant_fonts() {
wp_enqueue_style(‘vryn-restaurant-damion’, ‘//fonts.googleapis.com/css?family=Damion’);
wp_enqueue_style(‘vryn-restaurant-karla’, ‘//fonts.googleapis.com/css?family=Karla:400,400italic,700,700italic’);
}
add_action( ‘wp_enqueue_scripts’, ‘vryn_restaurant_fonts’ );function vryn_restaurant_styles() {
wp_dequeue_style( ‘sixteen-basic-style’ );
wp_dequeue_style( ‘sixteen-layout’ );
wp_dequeue_style( ‘sixteen-main-style’ );
wp_enqueue_style( ‘sixteen-basic-style-2’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘sixteen-layout-2’, get_template_directory_uri() . ‘/css/layouts/content-sidebar.css’ );
wp_enqueue_style( ‘sixteen-main-style-2’, get_template_directory_uri() . ‘/css/main.css’ );
wp_enqueue_style( ‘vryn-restaurant-main’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘vryn_restaurant_styles’, 20 );remove_action( ‘after_setup_theme’, ‘sixteen_custom_header_setup’ );
function vryn_custom_header_setup() {
add_theme_support( ‘custom-header’, array(
‘default-image’ => get_stylesheet_directory_uri().’/images/tracks.jpg’,
‘default-text-color’ => ‘fff’,
‘width’ => 1600,
‘height’ => 400,
‘wp-head-callback’ => ‘sixteen_header_style’,
‘admin-head-callback’ => ‘sixteen_admin_header_style’,
‘admin-preview-callback’ => ‘sixteen_admin_header_image’,
) );
}
add_action( ‘after_setup_theme’, ‘vryn_custom_header_setup’);
?>If I do have to reinstall the theme how do I do it without losing all of my content for the website?
Any help will be appreciated.Forum: Fixing WordPress
In reply to: Page Builder and ArchivesProblem solved! I simply created a new page called Past Book Reviews and made the Blog page as a Parent in the page attributes. Yes , it’s on the menu, but under Blog and not out front with the main menu which is fine. And I can still create new content as a post if I want to so it will show up in the archives as well. I hope this helps someone else too. Thanks guys.
Forum: Fixing WordPress
In reply to: Page Builder and ArchivesThanks guys, I’ll keep on digging. I have a thought. Could I just create a new Page and put the content that I want saved there, and have a link to it on the author post page where the current content is. But then, won’t the linked page have to have a title and therefore be included on the menu, which I would rather not want to happen.