tgberk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Product designer plugin lets customers to add text on product images@developress thanks! I’ll look the jobs board.
Forum: Fixing WordPress
In reply to: Product designer plugin lets customers to add text on product imagesHi there @developress, thanks for the reply! Yes, I think the closest thing to they have is this kind of a plugin. Is it possible to find someone to code it using this plugin or from scratch? I wonder where can I find someone qualified to code something like this.
Forum: Themes and Templates
In reply to: [Hueman] Can i get 3 or 4 thumbnails?Okey I understand, thank you very much. I am going to do these steps
Forum: Themes and Templates
In reply to: [Hueman] You may also likeThank you, if you’ve more solution for this, I will do it. I said I gave it up because I don’t want you to spend more time on this. Because it seems like it is a random thing.
Forum: Themes and Templates
In reply to: [Hueman] Top Rated PageHello again,
No, It doesn’t work :/ No I didn’t do excerpt thing on purpose. Actually, before I started this post, I haven’t made function call for views. It was working without it. It is still working. Anyway, I changed the place of functions calls. I moved to the end, I mean this https://pastebin.com/dQnNEuti
Forum: Themes and Templates
In reply to: [Hueman] Top Rated PageSorry, my mistake ?? But I couldn’t make it. Now I’ve 4 files in my child theme.
These two I’ve made and edited for the views plugin. You’ve said to me copy content.php or content-standart.php depending on which layout i am using. I made both them because I don’t know which layout I am using. They’ve function call for the views plugin.
content.php (https://pastebin.com/EAHZecy0)
content-standart.php (https://pastebin.com/zzDP2xBu)These two I made for rating plugin. I added the function top rated plugin function call. This code (you can see at the ends of files):
<?php if(function_exists('the_ratings_users')) { the_ratings_users(); } ?>
content-top-rated.php (https://pastebin.com/dZseBsKS)
content-standart-top-rated.php (https://pastebin.com/fAjGcPki)And finally it is top rated page template:
top-rated.php (https://pastebin.com/7yGWTD9z)I think there is a problem with `rating_users’. May be It doesn’t call rating plugin I don’t know. Plugin author gave me these two codes.
<?php if (function_exists('get_highest_rated')): ?> <ul> <?php get_highest_rated(); ?> </ul> <?php endif; ?>
and
<?php query_posts( array( 'meta_key' => 'ratings_users', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); ?>
I used second one because it looks similar to wp-views plugin code this one:
<?php query_posts( array( 'meta_key' => 'views', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); ?>
So I simply changed “views” to “rating_users”. But It doesn’t work :/
Forum: Themes and Templates
In reply to: [Hueman] Can i get 3 or 4 thumbnails?Thank you. For the last step, should I use the plugin or can I just change index.php?
Forum: Themes and Templates
In reply to: [Hueman] You may also likeUnfortunately it doesn’t work. However i gave it up ?? Thank you for effort I’ll use as standart number.
Forum: Themes and Templates
In reply to: [Hueman] Top Rated PageHello,
I can’t find this code in content.php or content-standard.php
<?php get_template_part('content'); ?>
it is my content.php file https://pastebin.com/kFEphpEg
Forum: Themes and Templates
In reply to: [Hueman] Can i get 3 or 4 thumbnails?Hello,
I noticed that these codes shows 3 thumbnails on smartphones too. How can i change to default style for phones? because it makes difficult to read.
Forum: Themes and Templates
In reply to: [Hueman] You may also likeThank you, I changed You may also like, but there is a problem with displaying 6 posts. It shows 5 posts and in some pages it shows in 3 there line like this:
3 posts
1 post
1 postI am using 2 column left layout, maybe It causes this. But when i switched to an another layout it still the same. I couldn’t figure out why it worked with your website but not with mine :/
Forum: Plugins
In reply to: [Max Mega Menu] Multicolumn Category List on Sub MenuThank you very much, It worked perfectly.
Forum: Themes and Templates
In reply to: [Hueman] Changing "tag" nameI understand Andrew, didn’t know this rule. And thank you very much bdbrown, I made it work. You’ve been so helpful to me on my all post, I don’t know how to thank you. Good care of yourself.
Forum: Themes and Templates
In reply to: [Hueman] Changing "tag" nameThank you very much, everything except tagged icon worked.
Forum: Themes and Templates
In reply to: [Hueman] Changing "tag" nameThank you, I was looked at this post but When I copied this code to child theme’s function file It just changes tag’s name in admin panel. It is still same when I viewed posts and tag’s page. I want to change these 2 things: https://imgur.com/a/wttXZ
First image from a post I want to change Tag to Go to Actor
Second image from tag page I want to change Tagged to Actor and icon to this: https://fortawesome.github.io/Font-Awesome/icon/television/Is it something i can do with css?