barat
Forum Replies Created
-
Nope – it’s not a theme …
Now I know 100%. Clean WP 3.7.1 Install with default Twenty Thirteen theme. I just made two static pages – one was set for front page, and second for blog.
When I write some content on “Blog” page – it’s searchable.
It’s just like wordpress handle it …I just excluded ID of this page from search results manualy.
Its custom – made it myself. But there is no custom loop for search results neither in functions.php or in search.php template file.
Hi,
One thing – You’ve included “lang” directory but have not registered any textdomain. In that case – there is no way to localize Your plugin using CodeStyling Localization or so …
Next thoing is that You’re using just a plain text and not _e() and __() functions … that’s limiting multilanguage ussage near to zero …Forum: Plugins
In reply to: [ALO EasyMail Newsletter] ip_address always NULL in DBOK … solved this – You have to make a “quick fix” because of bad logic in alo-easymail_functions.php on line 890:
if ( !is_admin()) $fields['ip_address'] = alo_em_ip_address();
To:
if ( !is_admin() || ( defined('DOING_AJAX') && DOING_AJAX ) ) $fields['ip_address'] = alo_em_ip_address();
It’s because is_admin is always TRUE when using admin-ajax.php (eg. in Subscribe Newsletter Widget)
https://codex.www.ads-software.com/Function_Reference/is_admin#Notes
Forum: Plugins
In reply to: [Redirect] Meta box doesn't display in custom post type editorIt’s $this->postTypes = get_post_types(); problem …
It’s just firing to early (just as plugin is included).
This should be hooked to some action (maybe ‘init’ or even later if posible – some plugins register post types later than init hook)Forum: Plugins
In reply to: [AddThis Social Sign In] problem with not visible FB login buttonSame problem in my case … on wp-login.php?action=register everything is OK, but on wp-login.php – no facebook button :/
EDIT:
It’s something with reCaptcha plugin – if I disable it – facebook button is working on both – login and registerForum: Fixing WordPress
In reply to: pluggable.php, functions.php and wp-adminnoone knows?
??
It’s wierd that functions, which should be re-writable can’t be used in wp-admin…Forum: Fixing WordPress
In reply to: WP_Query ‘cat’ = no resultsOK – solved it …
The problem was because of Category Visibility-iPeat Rev plugin …I think that I have to check all installed plugins (I’ve to redesign blog which have been about 5 months online, and plugins wasn’t instaled by me)
BTW – replaced this plugin by:
https://ryowebsite.com/wp-plugins/category-visibility/seems to work OK
PS. I’m still thinking that WP is limited, and lot of things have to be made in “go around” way ??