parfumio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove the theme author from the adminThanks again
Forum: Fixing WordPress
In reply to: Remove the theme author from the adminThanks, lucianp, it worked.
I saw that there but I don’t know why I thought that in css something placed between /* and */ is just some sort of comment that doesn’t affect the outcome of the theme.Still not working. I’m not as lucky as some of you, for me it doesn’t work not even once in a while.
Forum: Fixing WordPress
In reply to: Facebook Like button of my Facebook page, not of my site.Thanks guys
I already have a like box implemented as a widget (via a plugin) but I would like to remove that widget and only keep a light version with a Like button. I have now implemented the Like Box as you said (you can see it at the top of my homepage, https://www.parfumio.ro) but it is not quite what I was looking for because it reads Parfumio on Facebook.
I would like to show the likes exactly as they show them on the site that I have mentioned above, aoro.ro
I appreciate your help.
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?i tried and unfortunately it still shows either at the very beginning or at the very end, not inside the page content
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?I did and no matter where I put it, “some text here” gets added at the end of the page.
Do you have any idea if custom fields can be used for this task?
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?No, for those plugin icons I didn’t have to insert code, I only installed the plugin.
The plugin is called “Tweet, Like, Google +1 and Share” and it is located here:
https://www.ads-software.com/extend/plugins/only-tweet-like-share-and-google-1/?topic_id=23208Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?And it would help a lot if I could also add an image beside the text…
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?I think I’m close…
I put it in different spots on page.php but it shows either at the very beginning, before the plugin with the buttons “Like” and “+1” or at the very end.
(please see https://www.parfumio.ro/chanel for instance)I want the text to show inside the page at the beginning but AFTER that “Like” and “+1” plugin.
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?I think I got it and I have inserted the code there but nothing happens.
For example, the page https://www.parfumio.ro/chanel/ has the ID=1112 and I think I should see there “some text here”, right? I don’t see it.This is exactly how I inserted the code in index.php:
<?php if ( function_exists( 'get_smooth_slider' ) ) { get_smooth_slider(); } if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="Post"> <div class="Post-tl"></div> <div class="Post-tr"><div></div></div> <div class="Post-bl"><div></div></div> <div class="Post-br"><div></div></div> <div class="Post-tc"><div></div></div> <div class="Post-bc"><div></div></div> <div class="Post-cl"><div></div></div> <div class="Post-cr"><div></div></div> <div class="Post-cc"></div> <div class="Post-body"> <div class="Post-inner article"> <h2 class="PostHeaderIcon-wrapper"> <span class="PostHeader"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"> <?php the_title(); ?> </a></span> </h2> <?php $post_and_pages = array(1059,1067,1071,1073,1076,1081,1087,1107,1112,1115,1121,1123,1118,1129,1142,1145,1151,1188,1191,2581,2658,2706,2716,2717,2718,2719,2738,2739,2741,2742,2743,2780,2785,2787,2795,2811,2781,2782,2783,2812,2813,2859,2967,2981,2988,2990,2993,2996,2998,3002,3007,3009,3011,3015,3018,3697,3703,3747,3875,4011,4070,4090,4321,4385,4617,4697,4816,4912); // ID's of Posts and Pages if(in_array($post->ID, $post_and_pages)) : ?> <p>some text here</p> <?php endif; ?> <?php $icons = array(); ?> <?php if (!is_page()) : ?> <?php ob_start(); ?>
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?I’m not sure if it helps but my theme is a free theme and the basic version can be found here:
https://www.leadcamp.com/content/2009/09/14/cherry-blossom-brances-free-wordpress-template-themes/I have customized it a lot since I started using it (mainly in terms of css) but that is the source.
I’m not sure what it means to add that code in the loop. I have read some things about the loop but I’m not sure I understood ..
Forum: Fixing WordPress
In reply to: How to add same text (or text plus image) in multiple pages/posts?Thanks a lot, keesiemeijer
Unfortunately I’m not very familiar with coding/php.
I mean I have tweaked my site quite a lot even in terms of coding (css and even a little php) but I can only do this if I have all the details: where to insert the code, step by step, etc.So please explain this as for a novice.
My site: https://www.parfumio.ro
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Thank you pageExcellent stuff!
Thanks a lot for this great plugin and for the support!Forum: Fixing WordPress
In reply to: comments in pagesHi
I tried to understand your answer but I guess I’m missing something..
I still don’t know what should I do in order to hide the comments from certain pages.You suggested to add
<?php comments_template('exclude=enter the page id here'); ?>
and so I did.
Let’s take an example:
The page https://www.parfumio.ro/contact/ (ID=344) is ok, the comments are closed and the ones added before are not shown.
But the page https://www.parfumio.ro/oferta-speciala/ (ID=254) still shows comments and allows new ones.
Both ID 254 and 344 are excluded as you told me.Why is that and what should I do?
I tried to add
<?php comments_template('exclude=enter the page id here'); ?>
in index.php too but it didn’t work. Probably I didn’t add it where I was supposed to add it..Thanks
Forum: Fixing WordPress
In reply to: comments in pagesWhat about the other issue? Why do the comments still show in some pages even if I disabled them? Do you have any idea what I shoud do?