Martin Robbins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Page on loadI’ve created a new WP site in a subfolder and i’ve redirected the domain to look at the subfolder install instead
What is the subfolder name? Exactly how did you accomplish this redirection?
I then created the subdomain ‘oldsite’ to map to the old WP site (in the root folder)
Exactly what did you do to attempt this mapping?
Forum: Fixing WordPress
In reply to: Importing of old wordpress.com siteYou are welcome, Your site on bluehost seems OK at http://www.beerandcroissants.com/ … Just without any imported posts. And there’s a login at http://www.beerandcroissants.com/wp-admin/ … Can you login there? Without using the WordPress.com option?
Forum: Fixing WordPress
In reply to: plugin de traductionHello,
I need a free translation plugin for wordpress my site French into English and from English into French because they found that almost no walking or bug.
Thank you in advance.
Forum: Hacks
In reply to: Post Count for Categories, however not to calculate a totalFor further assistance, please post the link to your site. Also, what theme do you use?
Forum: Fixing WordPress
In reply to: Blank Page on loadYou are welcome.
So your site appears OK at http://lincsmulticlean.co.uk/ … And the login screen seems OK at http://lincsmulticlean.co.uk/wp-admin/ … Can you login there?
I’ve mapped ‘oldsite’ subdomain to root directory of my 1and1 webserver so that my old site is still accesible.
Can you tell us more about your old site? Is it an html site in the same folder as your WordPress? Are you attempting to make visible both sites?
Forum: Themes and Templates
In reply to: [WEN Business] mobile friendly slider textFor us to to provide further assistance, please provide a lnik to your site.
Forum: Localhost Installs
In reply to: Way to conceal CSS/HTML from contributor?Another possibility is use custom fields for whatever she fills in. And write a template to output the custom fields, and all the html and shortcodes instead of putting it in the content editor. This kind of functionality can be implemented easily enough with the plugin Advanced Custom Fields.
Forum: Hacks
In reply to: Where to put code….functions.php or wp_admin editor for themeIt seems perhaps either you have not understood my answers or I have not understood your questions. At this point I would suggest consult the Genesis theme authors and/or their documentation. Good Luck
Forum: Hacks
In reply to: Where to put code….functions.php or wp_admin editor for themeIf you have theme options panels in wp-admin, best to go with that. If you want to edit functions.php yourself, best to create a child theme and edit the child functions.php and not the parent.
Forum: Fixing WordPress
In reply to: Uploading php files with WordPress installedYou don’t need a subdomain, one possibility is to use .htaccess rules to tell apache to serve requests for .html pages without passing the request to WordPress. The Redirection plugin can write those rules for you if you don’t know how.
http://stackoverflow.com/questions/6358293/how-can-i-serve-static-pages-alongside-wp-3-0-multi-site
Forum: Fixing WordPress
In reply to: Styling Logout Confirmation ScreenInstead of editing the core code, one solution is to filter in your new code via action hook:
https://codex.wordpress.org/Plugin_API/Action_ReferenceAnother option, have additional stylesheet in your theme and properly enqueue it. There’s plenty plugins and tutorials out there that do it for the wp-admin pages. I do admin css like this:
<?php /** * Plugin Name: WP Admin CSS * Description: * Version: */ //First solution : one file add_action( 'admin_enqueue_scripts', 'load_admin_style' ); function load_admin_style() { // wp_register_style( 'admin_css', get_template_directory_uri() . '/admin-style.css', false, '1.0.0' ); //OR wp_enqueue_style( 'admin_css', get_stylesheet_directory_uri() . '/admin-style.css', false, '1.0.0' ); } /* //Second solution : two or more files. add_action( 'admin_enqueue_scripts', 'load_admin_styles' ); function load_admin_styles() { wp_enqueue_style( 'admin_css_foo', get_template_directory_uri() . '/admin-style-foo.css', false, '1.0.0' ); wp_enqueue_style( 'admin_css_bar', get_template_directory_uri() . '/admin-style-bar.css', false, '1.0.0' ); } */ ?>Forum: Fixing WordPress
In reply to: comments on posts on dashboardYou are welcome
This part you can do without P2 and probably without enable editing all posts:
Here’s another idea: create a blog page to display all posts, publish no link to that page, password protect it, give the link and password only to your approved commentors, configure properly the settings>discussion, maybe they don’t even have to be logged in, and then they do commenting and discussion on the front end!
Please mark the topic resolved?
Forum: Everything else WordPress
In reply to: Staging environment with subversion control?For what it’s worth here is article re staging via git or bitbucket:
http://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/Forum: Fixing WordPress
In reply to: comments on posts on dashboardYou went back to the same theme from before p2?
Check settings > reading ?
Try deactivate all plugins, to test for conflict?
Exactly what all are messed up?
If sidebar, you might need to rearrange your widgets into the proper widget areas again.
Please post your site address?
Forum: Fixing WordPress
In reply to: Cannot bring up my siteMost likely you have deleted the /wp/index.php
Get a copy from a backup or download a fresh wordpress.zip file and use the file /wordpress/index.php from the zip.