bluelemonade
Forum Replies Created
-
Strange, I can of course connect to all kinds of mail programs and TLS / StartTLS. Only the plugin doesn’t work.
Forum: Developing with WordPress
In reply to: How to get page tree view with wordpress REST APIyes, I implemented a custom endpoint, which adds recursive childs to the parent ID data, works fine.
I’m currently hanging out to read out the custome fields of these posts. When using the default post or page paths the callback contains the cusotm fields, ACF and TYPES fields.
ist there a method to clean all role or permission setting for the complete site?
I habe PublishPress Permissions installed for managing the permission. nothing else.
I am using Sidebar Login Plugin, that’s an widget for the sidebar navigation
to edit the pages the user is editor. user that only can read a post are simpe subscibers
I never used capabilities.
the only thing we changed is that we switched from http to https a few month ago.
it happens for all user, groups or single use roles.
I tested to remove or assign the read write permission via Permissions > Groups. everything as expected, only the edit for the non admin does not work.
I deactivated all plugins that touch this issue, hide login, security things…, nothing.
Forum: Fixing WordPress
In reply to: Display all scaled images in media library?thanks for your answer. I don’t need the files in the dropdown, its Ok to get the files in the image panel where all original images are displayed. the user can see the image info on the right side when an image is selected.
Forum: Plugins
In reply to: [JSON API] get taxonomies and custom taxonimes entriesok, it’s easy. somebody posted a taxonomy controller a year ago:
I added this, works fine. Perhaps someone can help me with getting polylang WPML data.
regards`public function getAllNames() {
global $json_api;$taxonomies = get_taxonomies();
$return[‘taxonomies’] = $taxonomies;
return $return;}
public function getAll() {
global $json_api;$taxonomies = get_taxonomies();
foreach($taxonomies as $taxonomy){
$terms = get_terms($taxonomy, array( ‘hide_empty’ => true) );
$termsArray[$taxonomy]= $terms;}
$return[‘termsArray’] = $termsArray;
return $return;
}`
Forum: Plugins
In reply to: [Page scroll to id] multiple menu itemes problmit works, thanks
Forum: Plugins
In reply to: [Page scroll to id] multiple menu itemes problmForum: Plugins
In reply to: [Page scroll to id] multiple menu itemes problmby the way this is my css for the activated menu item
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #000000;
background-color: #ffffff;
margin-top: 4px;
}Forum: Plugins
In reply to: [JSON API] repeating custom fieldsok, I put this into set_custom_fields_value() inside post.php
if ( count($wp_custom_fields[$key]) > 1){ $cnt = count($wp_custom_fields[$key]); $str = ""; for ($pos = 0; $pos < $cnt; $pos++) { $str= $str . $wp_custom_fields[$key][$pos]; if ($pos < $cnt-1){ $str= $str. ","; } } $this->custom_fields->$key = $str; }else { $this->custom_fields->$key = $wp_custom_fields[$key][0]; }Forum: Networking WordPress
In reply to: Multisite with IP and several foldersis it possible to have one seperate database for each site with multisite?
Forum: Plugins
In reply to: url interface to get image listhi,
i implememted these feature in the json api.