ronnyrook
Forum Replies Created
-
Forum: Plugins
In reply to: [Kv TinyMCE Editor Add Fonts] Failed to load content css errorIt isn’t a theme specific issue. When I look in the network tab it looks like TinyMCE is causing the problem:
Forum: Plugins
In reply to: [Kv TinyMCE Editor Add Fonts] Failed to load content css errorI’m getting the same error with the Google Lato font.
Forum: Fixing WordPress
In reply to: Archive pagination causing 404 with permalinks structureYou can find your answer here: https://wordpress.stackexchange.com/questions/203976/archive-pagination-causing-404-with-permalinks-structure
Forum: Fixing WordPress
In reply to: WordPress pagination not working because its a subcategorySomehow I can’t edit this post anymore, but I thought it might be helpfull to add my WP_Query this topic.
$cat = get_query_var('cat'); $category = get_category($cat); $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $listArgs = array( 'cat' => $category->term_id, 'paged' => $paged, 'posts_per_page' => 11 ); $listPosts = new WP_Query($listArgs); while ($listPosts->have_posts()) : $row++; $listPosts->the_post(); endwhile;
Also I’ve found out that not only subcategories are facing this problem, but all the categories with paginations. Hopefully someone can help me out!
There also isn’t anything to see in in the JS console.. ??
Still doesn’t work. Running last WordPress and All in one SEO version..
As you can see right here (screenshot) I did, but the menu item doesn’t appear.
Forum: Plugins
In reply to: [Advanced Editor Tools] CSS class for link dialogThe documentation didn’t make my clear the Init wasn’t part of the value.
I’ve got it working now, thanks for the helpForum: Plugins
In reply to: [Advanced Editor Tools] CSS class for link dialogI’ll have the exact same problem as described above.
Forum: Plugins
In reply to: [Advanced Editor Tools] CSS class for link dialogI’m also looking for this feature.
Where do I have to place to code from the first example (tinymce.com)? For me it isn’t any problem this is site specific, just not clear how to achieve it.Thanks for the help.
Forum: Plugins
In reply to: [Contact Form 7] Styling checkboxesThanks, I didn’t knew this.
I did add the checkboxes with the same name attribute. But when I’ll chose multiple checkboxes only one value will appear in the e-mail sended.The name attribute I use is
name="offerte"
, the output isOfferte keuze: [offerte]
.
Familiar with this problem?Thanks for the help so far ;)!
I’ve did a reset on the options. Now the standard fancybox is enabled which causes the following errors:
jquery.fancybox-1.3.4.pack.js:18 Uncaught TypeError: Cannot read property 'msie' of undefined nextgen_fancybox_init.js?ver=4.1:5 Uncaught TypeError: undefined is not a function
With lightbox enabled the same problem as before appears..
I seriously don’t know what to do anymore..Edit:
I did fix the fancybox errors using jQuery migrate. But now fancybox also shows a blank page on Ajax pagination..With jQuery migrate added I’ll get the following warning on pagination:
JQMIGRATE: $(html) HTML strings must start with '<' character
Edit 2:
I’ve fixed the problem.
The gallery was linking to/hello-world/nggallery/page/2
, but that page is empty and not even showing on the homepage. So why the gallery permalink was/hello-world/
I don’t know. But by deleting the standard post the problem was solved.@cais – Again, thanks for your reply. At the moment I’ve deleted the “development” environment and I’ll changed the permalink structure to
/%postname%/
but the same problem still appears.Now when I hover the second page button it links to
/hello-world/nggallery/page/2
, and on click again a blank page shows up.What else can I use instead of the
apply_filter
forthe_content
?Hi,
Because I’m currently developing the website you have to visit /?view=1. This set’s a cookie which makes it possible to visit the website with album. I’m using the standard WordPress permalink structure, so nothing special about that. If you view the website for the second time without the ?/view=1 the homepage is displayed.
I’ve inserted the display by the shortcut in the visual editor. The code created is
<img class="ngg_displayed_gallery mceItem" src="https://domain.nl/index.php/nextgen-attach_to_post/preview/id--205" alt="" />
In my template I’ll use
<?= apply_filters('the_content', $page->post_content) ?>
after I’ll usedget_pages
.Hi Cais,
On this page you can find the gallery on the right. Hopefully you can help, thanks.