Pedro
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Jetpack WP 1.9 & WPSEO 1.2.8.7 ConflictHey guys,
I ran into the same issue and I confirm that disabling JetPack made WP SEO work. After digging a bit into this, I found out that resources from this kind of links are not loaded:
https://s1.wordpress.com/wp-content/js/backbone.js?ver=201243
https://s1.wordpress.com/wp-includes/js/jquery/jquery.spin.js?ver=201243
https://s1.wordpress.com/wp-content/js/mustache.js?ver=201243
https://s1.wordpress.com/wp-content/js/underscore.js?ver=201243causing the WP SEO plugin blank page. There seems to be some issue with the certificate used for serving these links as you get a certificate error while trying to access them.
Another behavior I noticed is that on the post edit screens, the WP SEO menu is collapsed and cannot be expanded.
My expertise regarding certificates is limited and I hope this helps in finding a fix for it.
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Permalinks Category Base ProblemHello,
I just want to say I have the same issues with the sub-categories, that are always broken in my case (returning 404).
If there is any fix for this I’d gladly use it. Meanwhile I’m using another plugin called WP No Category Base that works fine for me.
Maybe it helps someone else.
Thanks,
PedroForum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Publish to fan page setting DisabledHey all,
Just wanted to say that I have the same issue and it’s not fixed with version 1.0.3. Every time the “Publish to fan page” drop down gets back to “Disabled”. For me this is an improvement from 1.0.2. where besides going to “Disabled” it was also removing all the fan pages I had. Another thing is that on my site the wp-admin area is served from another domain than the main site.
Thanks for this plugin and I really hope it will be working soon. I’m glad to help in any way you need it.
Forum: Plugins
In reply to: [BuddyMobile] [Plugin: BuddyPress Mobile] Page template for front page?I was also wandering the same, but looking at the FAQ it says that you can edit the default theme.
If you succeed in creating a child theme please share how you did it, I’m also interested. At the first look a child theme would need more work editing the plugin files than the default theme itself :-/
Forum: Fixing WordPress
In reply to: Setting the default rss feedHello,
I had the same issue and I resolved it in the following way:
– I used a BP compatible child theme
– in the file called header.php from the child theme I replaced this line:<?php do_action( 'bp_head' ) ?>
with this one:
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ) ?> | Main RSS Feed" href="<?php bloginfo('url'); ?>/feed/" />
In this line you can change how you want the title to appear (put something else instead of “Main RSS Feed”) as well as redirect to any other feed (like /feed/category/category-name/feed/ ).
IMPORTANT: please note that by removing the line above (containing bp_head) you’re also deactivating the members feed, group feed and other similar stuff. I’m not a BP expert and there might be other stuff done there. For my site this fix was ok and I didn’t see any other side effect.
Good luck!
Forum: Fixing WordPress
In reply to: Archives won't show ALL my archives for the month?Hi there,
The “next page” or “previous page” buttons are not there by default at all the themes, therefore you theme doesn’t seem to have it.
An easy fix for this is to try this plugin:
https://www.ads-software.com/extend/plugins/wp-pagenavi/
I hope it helps!
Forum: Fixing WordPress
In reply to: WordPress Admin SSLHello,
Maybe this set of instructions will help you, they are from the plugin’s FAQ site:
https://www.kerrins.co.uk/blog/admin-ssl/reset/
More FAQ’s about this plugin here.
I hope it helps!
Forum: Plugins
In reply to: wordpress seo by yoastHi again, sorry for the late reply,
What version of the plugin are you using? Is it the latest version?
A solution could be to find an option called “Force Rewrite Titles” and to check it. If this is not working, then un-check that box and make sure your title from your theme’s header.php looks identical with this one:
<title><?php wp_title(”); ?></title>
More details in this thread.
Good luck!
Forum: Plugins
In reply to: [Facebook] Autopost to Facebook Pages not working after 2 hoursSame here, auto-posting still not working after trying out @bradkovach’s solution. Even after the plugin update it is not working.
I wonder if it actually works for anyone ??
Forum: Fixing WordPress
In reply to: Submenu items adding problemI’m glad you finally solved your issue ??
Good luck and I advise you to stay away from IE. Bad bad browser :))
Forum: Fixing WordPress
In reply to: Submenu items adding problemHi 9A2GB,
I just tried this on a test site and I could add with no issue sub-menus up to 5 levels.
I didn’t ask you before what happens when you’re trying to add another 3rd level sub-menu? Is there any error message? Have you tried using another browser? I just had a small (ajax) glitch with Firefox, but with Chrome it went smoothly.
Forum: Themes and Templates
In reply to: ThemesMy pleasure, please let me know if I can help you in any other ways.
Good luck!
Forum: Plugins
In reply to: Any plugin for change style on menu?I installed this plugin on a test site and it doesn’t seem to be fully compatible with Twenty Eleven theme, therefore I don’t recommend using it.
If you only want to edit the CSS of your menu and sidebar, you can easily create a child theme of Twenty Eleven like this:
1. Create a folder in your themes folder from your server (/wp-content/themes/) called let’s say my-twentyeleven (don’t use spaces).
2. Create a file that you call styles.css with the following code inside:/* Theme Name: My Twenty Eleven Author: jojforit Version: 1.0 Template: twentyeleven Text Domain: twentyeleven /* You must first include the original css from the parent theme */ @import url("../twentyeleven/style.css"); */
3. If you go Appearance->Themes in the WP dashboard you’ll see a new theme called My Twenty Eleven by jojforit. Activate it.
4. Now you can add your own CSS lines that will overwrite the lines from the original Twenty Eleven theme and they won’t be lost when you update the original theme. For example, to change the background color of the menu you can add a line like this in the style.css file that you’ve just created:
#access { background: #123123; }
Good luck!
Forum: Themes and Templates
In reply to: ThemesHere it is:
It’s in Romanian and it has recipes for babies, but I guess you’re more interested in the look & feel rather than the text itself.
Forum: Plugins
In reply to: wordpress seo by yoastHey nutsaboutwp,
Looking at the source of your page makes me believe that indeed this is coming from WordPress SEO plugin settings and is only affecting your home page. Have you checked the plugin settings for the home page? If you have the latest version of the plugin, this setting should be here:
https://www.wordpressunwrapped.com/wp-admin/admin.php?page=wpseo_titles#top#home
Check and correct what’s written in the “Title template” field.
If this still hasn’t fixed the issue I recommend checking the support page of the plugin.
Good luck!