Martin Robbins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing directory now cannot get into adminI think you’ll have to count from the top of each page if you can’t read the numbers.
Doesn’t it strike you as strange? That you published a post yet the permalink appears to be an archive?
Forum: Fixing WordPress
In reply to: Changing directory now cannot get into adminWhat is the permalink for the test post?
Forum: Fixing WordPress
In reply to: Changing directory now cannot get into adminThe spam issue is resolved, you presently are posting to the topic.
There’s 30 posts per page of the topic. And roughly 2 and a half pages in the topic. The posts are numbered at the far left.
I don’t think your admin is working 100% correctly. Didn’t you say you are not able to draft/publish a new post?
I believe everything you need to fix everything 100% is within post 67 and post 59 of this topic.
Forum: Fixing WordPress
In reply to: Changing directory now cannot get into adminI don’t think it is working 100% correctly. Didn’t you say you are not able to draft/publish a new post?
I believe everything you need to fix everything 100% is within post 67 and post 59 of this topic.
Forum: Fixing WordPress
In reply to: Changing directory now cannot get into adminGood Evening / Good Morning @pwdiane … as the case may be…
Forum: Themes and Templates
In reply to: [Sensible WP] No blog page featured image?That’s probably how it’s supposed to be. The other pages show their featured image because it is called within their page template. However, usually the page_for_posts uses the index.php template and it does not call that page’s featured image. It often does call the featured image for every post displayed on that page.
Forum: Themes and Templates
In reply to: [P2] @mentions – use for child / new themeIn your theme you probably need to create a class, something like class P2()
And also create a function, something like function P2() but omit all parts except the “mentions” parts.
You are welcome. please mark the topic resolved?
Forum: Themes and Templates
In reply to: [Tempera] Styling Tempera Main MenuI didn’t find the file, other than that the code should be on line 47.
You are welcome, please mark the topic resolved?
Forum: Themes and Templates
In reply to: [Tempera] Styling Tempera Main MenuIt seems not in the style.css. It is inline:47
#access > .menu > ul > li > a > span { box-shadow: 1px 0px 0px #FFF; }You could try custom css or child theme css something like this:
#access > .menu > ul > li > a > span { box-shadow: none; }Forum: Themes and Templates
In reply to: [P2] @mentions – use for child / new themeThis from the version 1.5.5 functions.php:
class P2 { /** * DB version. * * @var int */ var $db_version = 3; /** * Options. * * @var array */ var $options = array(); /** * Option name in DB. * * @var string */ var $option_name = 'p2_manager'; /** * Components. * * @var array */ var $components = array(); /** * Includes and instantiates the various P2 components. */ function P2() { // Fetch options $this->options = get_option( $this->option_name ); if ( false === $this->options ) $this->options = array(); // Include the P2 components $includes = array( 'compat', 'terms-in-comments', 'js-locale', 'mentions', 'search', 'js', 'options-page', 'widgets/recent-tags', 'widgets/recent-comments', 'list-creator' ); require_once( P2_INC_PATH . "/template-tags.php" ); // Logged-out/unprivileged users use the add_feed() + ::ajax_read() API rather than the /admin-ajax.php API // current_user_can( 'read' ) should be equivalent to is_user_member_of_blog() if ( defined( 'DOING_AJAX' ) && DOING_AJAX && ( p2_user_can_post() || current_user_can( 'read' ) ) ) $includes[] = 'ajax'; foreach ( $includes as $name ) { require_once( P2_INC_PATH . "/$name.php" ); } // Add the default P2 components $this->add( 'mentions', 'P2_Mentions' ); $this->add( 'search', 'P2_Search' ); $this->add( 'post-list-creator', 'P2_Post_List_Creator' ); $this->add( 'comment-list-creator', 'P2_Comment_List_Creator' ); // Bind actions add_action( 'init', array( &$this, 'init' ) ); add_action( 'admin_init', array( &$this, 'maybe_upgrade_db' ), 5 ); }Forum: Fixing WordPress
In reply to: My domain expired and now I cant access my site after renewalAre you saying you renewed the expired domain? If so, how long has it been since you renewed? It might take up to 72 hours for the renewal to take effect…
Or did you renew and pay for your hosting account only?
And your expired domain got registered by someone else and they redirected it to http://www.worldofstonesandmystics.com/ which is their squarespace site?If this latter is the case, you will have to register a new domain and connect it with your host.
The squarespace site account http://www.worldofstonesandmystics.com/ appears suspended: https://henry-pikoos.squarespace.com/config/
Do you recognize the name henry pikoos?Forum: Localhost Installs
In reply to: Permalinks include 'index.html' where they shouldn'tHow you configure the virtual hosts? I think you might need the proper Directory directive. I do it like this for WordPress:
NameVirtualHost *:80 NameVirtualHost *:443 <VirtualHost *:80> ServerAdmin webmaster@manageablesites.com ServerName manageablesites.com ServerAlias www.manageablesites.com DocumentRoot /srv/www/manageablesites.com/public_html/ ErrorLog /srv/www/manageablesites.com/logs/error.log CustomLog /srv/www/manageablesites.com/logs/access.log combined <Directory /> Options FollowSymLinks AllowOverride All </Directory> </VirtualHost> <VirtualHost *:80> ServerAdmin webmaster@hugthoughts.com ServerName hugthoughts.com ServerAlias www.hugthoughts.com DocumentRoot /srv/www/hugthoughts.com/public_html/ ErrorLog /srv/www/hugthoughts.com/logs/error.log CustomLog /srv/www/hugthoughts.com/logs/access.log combined <Directory /> Options FollowSymLinks AllowOverride All </Directory> </VirtualHost>Forum: Fixing WordPress
In reply to: Can't log into my wp-adminYou are welcome,
– the user and pswd I’ve been using suddenly does not work.
Have you tried reset the password? Usually there is a link below the login box that reads “Lost your password?”
Forum: Themes and Templates
In reply to: Como cambiar temade nada, http://es.forums.wordpress.org/
Forum: Fixing WordPress
In reply to: Login to wordpressYou are welcome,
You can try check with your hosting providor. Ask them if there is some alternate domain in place that you can use to view the site and login to the dashboard.
Good Luck!