TheAustinG
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Widgets not saving after move to new serverThat was it! Talked to the host of my server and there was a security parameter that was causing the post.php page to be blocked by the server; therefore, nothing was able to be posted to the server from WordPress.
Forum: Fixing WordPress
In reply to: WordPress Widgets not saving after move to new serverI have tried all of that. With further research it looks like it might be a security issue with the server it’s hosted on.
I’ll post back with an update after I test a few things.
Forum: Fixing WordPress
In reply to: WordPress Widgets not saving after move to new serverYes, I get this error when I click save:
POST https://mysite.com/wp-admin/admin-ajax.php 500 Internal Server Error
Ended up fixing it myself. I changed the permissions for the root folder to allow read/write access for the “CREATOR OWNER” and that worked. ??
Forum: Plugins
In reply to: [Logo Carousel] Ticker Mode not working properlyHey guys, this should be a pretty easy fix if I understand what your problem is.
Go to your Admin Dashboard and hover over “Logos” on the left side. Then click on “Manage Carousels”. From there you can either change the settings under “Default” which will affect all of the carousels or you can click on the carousel you want to change the settings for. Then you adjust the “speed” to whatever works for you. The higher the number the slower the speed.
My carousel is currently full-width and 30000ms is about the right speed for me.
Screenshot: https://puu.sh/kbgvv/ddeba4fbbb.pngHope that helped!
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageCorrection to the code above. One of the lines is unnecessary.
New code:
<?php if(is_home()) { $img = wp_get_attachment_image_src(get_post_thumbnail_id(get_option('page_for_posts')),'full'); $featured_image = $img[0]; }?> <div class="featured-image-full-width" style="background-image: url( <?php echo $featured_image ?> ) !important; height: 400px; background-size: cover; background-repeat: no-repeat; background-position: center"></div>
Forum: Plugins
In reply to: [Logo Carousel] Delay in loading imagesStill no support form the author? :/
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageI managed to find a way to solve this problem. Here is what I did:
<?php if(is_home()) { $page_for_posts = get_option( 'page_for_posts' ); $img = wp_get_attachment_image_src(get_post_thumbnail_id(get_option('page_for_posts')),'full'); $featured_image = $img[0]; }?> <div class="featured-image-full-width" style="background-image: url( <?php echo $featured_image ?> ) !important; height: 400px; background-size: cover; background-repeat: no-repeat; background-position: center"></div>
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Duplicating first 5 postsdcooney helped me through email to solve this problem. Just in case anyone else runs into this issue it was a very easy fix!
Since WordPress is already loading the first 5 posts I needed to change the offset of the Load Ajax to 5 so that it ignores the first 5 posts. Once I did that it worked perfectly!
This is what dcooney said
Well your first 5 posts are not even loaded Ajax Load More – so when the plugin fetches your next posts it doesn’t know they are on the page.
You need to set offset=”5″ in order to start the loading at 5, 6, 7, 8, 9 etc…
Thanks again for the awesome support and plugin!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Duplicating first 5 postsI have sent you the url to my site using the contact form on your site. Looking forward to hearing back from you ??
Forum: Plugins
In reply to: [Logo Carousel] Delay in loading imagesAny help on this would be extremely appreciated! It’s urgent that I get this working flawlessly!
Forum: Fixing WordPress
In reply to: 404 on most pages including wp-admin and wp-loginGlad to hear! Sometimes a new plugin update can throw them off.
Forum: Fixing WordPress
In reply to: Dropdown Menu not displaying correctlyI added the class “main-navigation” to the menu and the dropdowns do work now. They styling is completely off but I do believe I can fix that pretty easily.
Thank you a lot for your help!
Forum: Fixing WordPress
In reply to: Dropdown Menu not displaying correctlyAs far as I can tell, the only thing I “changed” with the menu was I added a couple more items to it through a function. Could this be what’s causing the conflict?
function add_last_nav_item($items) { return $items .= '<li class="social-link"><a href="https://www.facebook.com/ColumbiaREDI" target="_blank"><i class="fa fa-facebook"></i></a></li> <li class="social-link"><a href="https://twitter.com/columbiaredi" target="_blank"><i class="fa fa-twitter"></i></a></li> <li id="sb-search" class="sb-search"> <form name="search-form" role="search" method="get" id="searchform" class="searchform" action="/"> <input class="sb-search-input" placeholder="Enter your search term..." type="text" value="" name="s" id="s" /> <button type="submit" form="searchform" formmethod="get" ><i class="fa fa-search"></i></button> </form> </li>'; } add_filter('wp_nav_menu_items','add_last_nav_item');
I also have this php in my header to call the wordpress menu.
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'menu_class' => 'nav navbar-nav' ) ); ?>
Forum: Fixing WordPress
In reply to: Dropdown Menu not displaying correctlyVery interesting. I must have changed something. Thanks for letting me know it does come with it by default though. I’ll take a look through what I changed in the menu and see if I accidentally changed something that I shouldn’t have.