Archie Makuwa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding New post is very slowTry increasing you php.ini memory, that often is the culprit. Also try disabling recently added plugins.
Forum: Fixing WordPress
In reply to: Super Admin and Admin can be edited by lower users !Forum: Fixing WordPress
In reply to: Custom Post Type – Job BoardI usually use a custom loop to retrieve my custom content, see example below:
<?php /** * Template Name: Gallery Page (Custom) * Description: A full-width template with no sidebar */ get_header(); ?> <div id="content" class="clearfix"> <div id="main" class="clearfix" role="main"> <!-- Test static test --> <h1><?php echo get_the_title(); ?></h1> <h2>Just a simple, plain and old school gallery using custom post types </h2> <!-- CUSTOM LOOP --> <?php $my_loop = new WP_Query( array( 'post_type' => 'gallery', 'posts_per_page' => 100 ) ); ?> <?php while ( $my_loop->have_posts() ) : $my_loop->the_post(); ?> <?php //the_post_thumbnail(); ?> <h3><?php the_title() ?></h3> <?php $image = get_post_meta($post->ID, 'upload' ); foreach ( $image as $img ) { echo pods_image( $img, 'original' ); } ?> <?php endwhile; ?> <!-- END OF LOOP --> </div> </div> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Gibberish on home pageHow did the problem occur? It seems to be calling a different file and displaying it instead of a php / html file.
Maybe it will be great if you run us through what you did exactly.
Forum: Fixing WordPress
In reply to: Custom Post Type – Job BoardIf you do not have problems with plugins, I recommend: Pods – Custom Content Types and Fields (it’s a WordPress plugin, easy to use and the documentation should get you where you need to be…)
Forum: Fixing WordPress
In reply to: create a 'Search page' button?WordPress comes with a build-in search by default. You can manually add the search box to any location of your theme and it will work.
Alternatively you can search for additional search plugins. Most are easy to use and have proper documentation.
Forum: Fixing WordPress
In reply to: How to change the permalinkYou can change the permalinks to -Post name option and then you will be able to manually overwrite the suggested permalink just below the title. I don’t think you will be able to use the ‘ # ‘ as a part of the permalink though
Forum: Fixing WordPress
In reply to: My blogs aren't appearing#mark as resolved [check box at the bottom]
Forum: Fixing WordPress
In reply to: My blogs aren't appearingWhat is displayed under “Blog”? It could be one of many things – wrong template or wrong loop executing
Forum: Fixing WordPress
In reply to: Redirect .com to .com/home/Hi,
Create a .htacess and paste the following code:
RewriteEngine on RewriteCond %{HTTP_HOST} ^yourdomain\.com$ RewriteRule (.*) https://www.yourdomain.com/$1 [R=301,L] RewriteRule ^$ home [L]
Or if you are hosting on a cPanel environment, login and search for redirects and work your magic there. You should have a ‘home’ folder created though for the redirect/s to work.
Understanding .htacess files: link
Forum: Fixing WordPress
In reply to: I want to make post titles a different color than hyperlinksThat is some basic css. Can you post a link so I can quickly give you the CSS code?
Forum: Themes and Templates
In reply to: Remove sidebar on Mystile themeThank you Esmi… I ended up switching to Foundation. The theme is currently being reviewed by WordPress.
I came right – thanks a milli for the reply
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsWPyogi… can we take private jobs on support forums? I can assist if that’s not an issue…
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsWhat have you done?
Delete your child theme and revert back to your old theme. This is how you create a child theme:
– create a new folder in your wp-content/themes
– copy style.css from your parent theme into your new theme
– change the theme name
– inherit css from your old themeForum: Fixing WordPress
In reply to: Interactive MapWell, that is entirely upto you. We have no idea what you and your client agreed on. Formore information on the google maps api: https://developers.google.com/
And what do you mean by interactive?