Adam Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Popular Posts] PHP Fatal Error with version 6.3.0Hi Hector, just updated to version 6.3.1, fatal error disappeared, but instead of displaying popular posts its giving me errors:
Warning: Undefined property: WordPressPopularPosts\Shortcode\Posts::$config
error shows in …wp-content/plugins/wordpress-popular-posts/src/Traits/QueriesPosts.php?on line?29
Yeah, but my question is if its possible to automatically create taxonomy term (with same title) when I published the new post?
For ex. I will create the post called “Test” (slug=test) and will be automatically create term “test”?
- This reply was modified 7 years, 5 months ago by Adam Michael.
Forum: Fixing WordPress
In reply to: Change page template after clickHi,
this solution works absolutly perfect!Thanks a lot.
Forum: Plugins
In reply to: [Easy Image Gallery] Display the ID/number of thumbnailHi Andrew,
I just tried change or add some variable in the file template-functions.php with easy_image_galleri_count_images() , but it brings the final number of uploaded images. For ex. from 12 images I got:<li class="thumbnail-12">...</li> <li class="thumbnail-12">...</li> <li class="thumbnail-12">...</li>
or when I used the ID I got the asigned number sorted from all uploaded files ever, for ex. thumbnail-1254, thumbnail-1255, etc.
but I need count from 1 to 12, like this:<li class="thumbnail-1">...</li> <li class="thumbnail-2">...</li> <li class="thumbnail-3">...</li> ...
Is there any possible way to do that?
Thanks a lot for your help.
Forum: Fixing WordPress
In reply to: Variable showposts from administrationCan anybody help me, please?
Forum: Plugins
In reply to: [Easy Image Gallery] Limit for displayed imagesI understand what you mean, but unfortunately, its sounds too difficult for me… With PHP ive minimal experience, with JS I have no experience… Could you please help me with the code?
THX a lot
@photocrati – I finally found that the problem has nothing to do with Nextgen gallery, bc continues with other plugins with popups in administration… One of my plugins must doing this mistake…
So thx ??Forum: Plugins
In reply to: [Easy Image Gallery] Twice Easy image gallerySo i have a very unprofessional solution ??
1. I duplicated your gallery and all text “gallery” in editor i changed to “galleri”.
2. Then I copy modified plugin and activated.
3. I removed automatic display first and second gallery with code:
remove_filter( 'the_content', 'easy_image_gallery_append_to_content' );
and
remove_filter( 'the_content', 'easy_image_galleri_append_to_content' );
4. In place with first text area content I put code for the first gallery:if( function_exists( 'easy_image_gallery' ) ) { echo easy_image_gallery(); }
and in second text area i put code for second gallery(i):
if( function_exists( 'easy_image_galleri' ) ) { echo easy_image_galleri(); }
I know it’s very provisory, but it works ??
@photocrati – i think youre right, i try find some own solution, thank you anyway for your plugin and support…
Forum: Plugins
In reply to: [Easy Image Gallery] Twice Easy image galleryso i try some own solution, thank you anyway…
Forum: Plugins
In reply to: [Easy Image Gallery] Twice Easy image galleryI just thought about copy your plugin with change the name and thereby and in this way duplicate it? Or its a stupid idea? ??
@photocrati – thx for quick reply. Unfortunately, im afraid, that problem is in position of nextgen gallery area.
Interestingly, when I turn off nextgen gallery area, and then click on the button again, all is right…
maybe its something bad on page load?