iCaspar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I make my website mobile compatiblePlease try http://jobs.wordpress.net/ or http://directory.codepoet.com/ and do not accept any hire offers posted to these forums.
Forum: Fixing WordPress
In reply to: Setting Up Second Website with New Domain in Genesis FrameworkYour best bet may be to open a support ticket at your InMotion hosting. They will know the ins and outs of how to set up two sites on your account. Also, keep in mind that whether you are able to host two sites on the same hosting account will depend on the specific features of your account. Some hosts only allow one site on a given hosting plan, especially if you purchased a “low end” hosting plan. You may need to upgrade. So again, an InMotion support person should be able to sort this for you pretty quickly!
Forum: Fixing WordPress
In reply to: Super upset – content lost after disabling VEThe visual editor is notoriously bad for trying to enter code into posts. It strips anything that looks like code in order to protect the site from users inadvertently entering code that could be malicious or otherwise break things.
I find it helpful to use a plugin that allows me to write my posts in Markdown (which makes code snippets pretty easy). Maybe check out https://ww.wp.xz.cn/plugins/wp-markdown/
Forum: Fixing WordPress
In reply to: Sub-footer updatesGlad you got it sorted.
Cheers!Forum: Fixing WordPress
In reply to: Sub-footer updatesWhere to find the information you’re looking for depends on the theme you’re using. Ordinarily themes use the
footer.phpfile for this.Either your theme is doing it some other way. Or, more likely, there is a function in your
footer.phpthat pulls that information into the footer rather than simply having “Copyright 2015” in a more recognizable way.What theme are you using?
Forum: Fixing WordPress
In reply to: Pages Not Visible@mlima1000 You should start your own topic, per the Forum guidelines.
Meanwhile, you can hone in on which plugin is causing your problem by disabling all plugins, then enable one at a time. The one you’ve just disabled when you can’t log in is the one that’s probably the bad one.Forum: Fixing WordPress
In reply to: Pages Not VisibleIf the problem began when you installed the new theme, then I’d start troubleshooting there first.
Try re-activating one of the WordPress bundled themes (like twentyfourteen) and see if your pages come back. If your site works with other themes, then it’s definitely a problem with the new theme.
Forum: Fixing WordPress
In reply to: HeplSorry you’re having trouble finding how to change the phone number on your site.
It appears that the phone number in the black footer (on the left bottom) of your site is part of a “text widget.”
You’ll find all the information for these things in your WordPress admin area if you go to Appearance > Widgets. On the right side, you will see several “widget areas”. The one you’re looking for is probably called “Footer 1” or something like that. (The exact name will depend on what your theme calls it, so you may have to hunt around a little here.) Click the down arrow next to the title. There will be two “Text Widgets” The phone number should be in the second one.
Good luck!
Forum: Fixing WordPress
In reply to: htaccess htpasswd appearing on all pages of the site?Try putting the
# Protect wp-loginsection before the rewrite section instead of at the end. That usually does the trick for me.Forum: Fixing WordPress
In reply to: Changing the Footer linksIt looks as if your footer links are generated by this line:
$html = wp_nav_menu($args);
That code pulls information from a WordPress menu, which you should be able to find and edit in your Dashboard under Appearance > Menus.
Good luck!Forum: Fixing WordPress
In reply to: Upload File to the root directory (top level folder or home folder)The easiest way to do this is not through WordPress at all, but rather by using your hosting provider’s “file manager.”
Once you’re in your web host’s file manager, find the folder where your WordPress files are installed (usually
public_html) click the file manager’s upload file button, select the technoratimedia file you downloaded and presto!Good luck!
Forum: Fixing WordPress
In reply to: Problem with excerpt on Custom Post TypesYou could try running your posts through
setup_postdata()and then usingthe_excerpt()to render it in your template. So:<?php foreach( $leidoPages as $leidoPage ): setup_postdata( $leidoPage ); if(...): ?> <div class="columns sixteen leidosBanner"> <a href="<?php the_permalink();?>"><?php echo $leidoImage['image'];?> <div class="textoleido"><?php the_excerpt();?></div> </a> </div>You get the idea. There’s some useful information in the codex for
get_posts().Forum: Fixing WordPress
In reply to: moved to linux server now broken helpThe errors are pointing to your WP Super Cache plugin. It’s saying that some of the required plug-in files are missing.
The easiest way to deal with it is to delete the plug-in and then reinstall it. But, since you can’t do that via the WordPress Dashboard, you’ll have to do so as follows:
First, go into your hosting file system (use FTP or whatever file manager GoDaddy provides) and navigate to the wp-content/plugins folder.
Within you should see a folder there calledwp-super-cache. Delete it and all it’s contents.
Now that you’ve done that, you should be able to log back into WordPress as usual and go to Plugins > Add New, search for WP Super Cache, and re-install a clean copy.
Good luck!