mladenpetr
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Can't change default language?Thanks, i didn’t see there was language picker for backend, i constantly tried to set it via dropdown in settings.
And on frontend “detect language by browser settings” thing was turned on by default.Forum: Plugins
In reply to: [qTranslate] qTranslate compatibility with WordPress 4.0.1Is mqTranslate fork of qTranslate or completely new plugin?
As it seems qTranslate is dead 🙁Forum: Plugins
In reply to: [Beautiful Yahoo Weather] Weather Widget Randomly DisappearsI really like how this widget looks but it disappears randomly. Does anyone know any good replacement? It doesn’t have to be WordPress plugin, some library for weather.
I was having similar problem, i just couldn’t add gallery. So i simply changed wordpress tinymce editor to something else.
But it was i year ago, it should have been fixed by now 😐Forum: Plugins
In reply to: [qTranslate] No "insert gallery" button! For last 5 versionsUsing the latest version 3.4.2. It seems it works now when i changed to default wordpress WYSIWYG from ckeditor. In last few versions i couldn’t get it to work.
Only insert gallery button was missing. And it was not in 100% of cases.Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Category and date problemWell you have options in admin area settings of qtranslate you have option to change date options. I can’t remember exactly what i did but i fixed that.
Now i have 2 serious problem that there is no way to fix.
first in wp primary navigation i cannot any way have two languages without having those <!–en–>! <–> and so on
And i cannot edit text in WYSIWYG default editor sometimes so i needed to use other editorss that are not perfect.Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Invalid characters in the_time()I have the same problem.
English is my second language, Serbian is primary. In primary language everything works ok, but second language(eng) is not showing correctly.Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Category and date problemI am sorry it was my error, i can edit category name. But still can’t figure out whats with date?
Forum: Fixing WordPress
In reply to: get image links from post?hey i found how this is the code:
<?php echo preg_replace('/<img.*?(>)/','',get_the_content()); ?>Forum: Fixing WordPress
In reply to: get image links from post?Ok so i found a plugin that does this.
Now i need NOT TO SHOW images from post via default get_post_content.
I want to strip post from default entering the images.Forum: Fixing WordPress
In reply to: change link to attachment?Well i have embedded wordpress inside my site and found a way to display only image from posts.
Now when you click on that image it takes you to wordpress attachment page, i want it to take me to post from which that image is taken BUT on my page where i would embedded content from that post.I dont want to do anything with wordpress theme.
I have used this function to display only image from post:
http://bavotasan.com/tutorials/retrieve-the-first-image-from-a-wordpress-post/Forum: Fixing WordPress
In reply to: image instead of post titleUhm yeah i tried that ofc but i then figured out that code i entered in functions.php uses preg matach and i cannot display it.
So i used now different code from this site:
http://bavotasan.com/tutorials/retrieve-the-first-image-from-a-wordpress-post/
But i still cant figure out how to use it 😐Forum: Fixing WordPress
In reply to: image instead of post titleTo be more exact i am using the following code to display posts on my site:
<?php $args = array( 'numberposts' => 3, 'category' => 3); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php echo catch_that_image() ?> </a></h2> <?php the_content(); ?> <?php endforeach; ?>Where <?php echo catch_that_image() ?> gets me the link to the image but i can’t show that image only link to image.
Forum: Fixing WordPress
In reply to: image instead of post titleI can’t figure out how to do this.
I do not use any theme i want to import it in existing site.
Using this link: http://www.wprecipes.com/how-to-get-the-first-image-from-the-post-and-display-it
that alchymythm have me i can get a link of image from post but don’t know how to use it?
It would be really great if someone could help me i need to make this work by tomorrow and i have no ideas 😐Thanks.
Forum: Fixing WordPress
In reply to: image instead of post titleI want to show image instead of title in category archive.
But how should i find first or any image from that post?thanks for trying to help