jargovi
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] Edit and delete buttons missingI have the same problem.
Turns out cyclone slider uses an old fontawesome version (3.2.1) inside their code which is problably overwritten by the fontawesome version of another plugin.
The names of the icons inside this stylesheet are not the same, therefore not recognized.A quick fix is to change inside (around line 50) in src\CycloneSlider\AssetLoader.php
changewp_enqueue_style( 'font-awesome', $this->url.'libs/font-awesome/css/font-awesome.min.css', array(), $this->version );To
wp_enqueue_style( 'cycloneslider-font-awesome', $this->url.'libs/font-awesome/css/font-awesome.min.css', array(), $this->version );And your icons will re-appear. But this will only last untill the last update.
Forum: Plugins
In reply to: [WP Help] Sync pull breaking at linksI’ve the same problem but if delete my internal document links from the text then the sync works. After spending some time in the code i think the problem exists in the function “convert_links_cb” in wp_help.php which parses the internal links.
E.G. The html of a page
Elke pagina bestaat uit drie onderdelen: <ol> <li><a title="1.1 De header" href="http://wptemplate.socialelephant.nl/wp-admin/admin.php?page=wp-help-documents&document=190">De header</a></li> <li><a title="1.2 De content" href="http://wptemplate.socialelephant.nl/wp-admin/admin.php?page=wp-help-documents&document=194">De content</a></li> <li><a title="1.3 De footer" href="http://wptemplate.socialelephant.nl/wp-admin/admin.php?page=wp-help-documents&document=192">De footer</a></li> </ol>Will result in the json feed as post_content:
"post_content": "Elke pagina bestaat uit drie onderdelen:\r\n<ol>\r\n\t<li><a title=\"1.1 De header\" href=\"http://wp-help-link/190\" /></a>",If i remove the internal links from the result is fine. External links are unaffected.