Lo?c Levêque
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Where are my images?Hello ElectricFeet,
I would like to change the 270×250 featured image size.
I do not know how to do this again. I used to be able to control it with function.php, but it is not working anymore.I’m not using any hover effect, no white border. I just would like the featured page images to be rectangular and to be able to control its extact ratio.
I’m using featured page unlimited, with Customizr.
Any help would be very welcome,
Best wishesForum: Plugins
In reply to: [My Private Site] redirecting root to folder, index.phpHello,
Thank you for your help.
The only thing I found was just to use the .htaccess redirection.
It does work now, at the moment. Of course I do have the folder name on the url, but it’s ok.Thank you again for your answers,
Forum: Plugins
In reply to: [WP Category Tag Cloud] Tag cloud pixeleted in contentOh, I see, I spent 20 Years abroad, then back, call that a mistake (being back).
Excellent things these radius x y z. It does transform the shape of the cloud indeed. Quite hard to change these without having type moving outside the frame, but I will try harder!
If you can make visual links between those tags who are related, like the “brain” thing, you tell us!
Bravo Monsieur,
Danke sehr,
LForum: Plugins
In reply to: [WP Category Tag Cloud] Tag cloud pixeleted in contentThank you so Much Henri!
Indeed changing the width resolve some problems, but…hhmmmmm:
I do have another question, sorry:
-Can we change the shape of the “globe” to have a kind of oval who could fit in a 16/9 screen? I’m just interested to know.
It would be nice to have your cloud on the front page taking all the width of the screen, but then, the ratio of the globe is more or less 4/3, and will push the other blocks down a lot, obviously.
Do you see what I mean? like: [–––––] instead of: [–]
I know we could use zooming, but I would prefer keeping the globe shape instead of having the type going out of the frame.Don’t tell me that you stayed 15 years in France…idée étrange.
And thank you again!
Lo?cForum: Plugins
In reply to: [WP Category Tag Cloud] Tag cloud pixeleted in contentHello Henri,
I wonder why we do write in English, considering that French seems to have no mystery for you, but…
I suppose that pixels have more to do with the generated PNG images, blowing up in a content “100% width”. When I look at the originally generated image (control click) it seems to be 300px wide. When the content block is wider than 300px, it starts to stretch, destroying the quality, zooming into the original 300px image to, let’s say, 600px width.
I’m am certainly wrong, but, if not, how can we have a HD image generated?
Thank you again for that very nice plugin!
à très bient?t,
Lo?c
Forum: Themes and Templates
In reply to: [Customizr] login failure after upgradeThank you ElectricFeet,
I found out that the problem was that the upload_max_filesize written in the PHP.ini was above the allowed max size by WordPress (2000M?).
I’ve no idea why that has any connexion with the login, but it does.
Thanks to djathomson, and his question/self-reply posted 5 years ago “yet-another-cannot-login”, I did put the size down in the php.ini, and now it does work nicely. I can indeed login to the admin.
Thank you again, I hope that the above can help anyone else.
Bien à vous…
Forum: Themes and Templates
In reply to: [Customizr] login failure after upgradeThank you ElectricFeet,
I did this but have a blank page, WordPress doesn’t switch to twentyfourteen.
Is there a script to force WordPress to switch template?Best wishes
Forum: Themes and Templates
In reply to: [Customizr] Video-import-problemHello Michael,
Because the person who will import video afterwards know nothing about codes. I thought it would be possible to have the ‘import video’ button working, to say a user friendly interface.
I wonder what plugin we should use to import video, a very strait-forward working plugin?Thank you very much for your reply!
Forum: Fixing WordPress
In reply to: [Plugin: Flash Video Player] Don’t Play Videos From YoutubeI’ve the same problem. And cannot find the right way do deal with this. The youtube videos used to work well before the last plugin update.
I suppose we have to use another plugin and start from scratch.
Or perhaps someone has a solution and could help us…
Forum: Fixing WordPress
In reply to: redirecting after flash video end?Hi everyone,
I just wanted a redirection after a flash video end.
I just found a solution in Yahoo:
<script type=”text/javascript”>
var player = null;
var playlist = null;function playerReady(obj)
{
player = gid(obj.id);
addListeners();
};function addListeners()
{
playlist = player.getPlaylist();if(playlist.length > 0)
{
player.addModelListener(‘STATE’, ‘stateMonitor’);
}
else
{
setTimeout(“addListeners();”, 100);
}
};function stateMonitor(obj)
{
if(obj.newstate == ‘COMPLETED’)
{
//…load a new page when the media file completes playing
document.location = ‘https://www.yourpage.com’;
}
};function gid(name)
{
return document.getElementById(name);
};
</script>I just copied that in my header and it works.
I hope it can help someone else.
Have a nice day.
Forum: Fixing WordPress
In reply to: redirecting automatically after few second?Hi everyone,
I just wanted a redirection after a flash video end.
I just found a solution in Yahoo:
<script type=”text/javascript”>
var player = null;
var playlist = null;function playerReady(obj)
{
player = gid(obj.id);
addListeners();
};function addListeners()
{
playlist = player.getPlaylist();if(playlist.length > 0)
{
player.addModelListener(‘STATE’, ‘stateMonitor’);
}
else
{
setTimeout(“addListeners();”, 100);
}
};function stateMonitor(obj)
{
if(obj.newstate == ‘COMPLETED’)
{
//…load a new page when the media file completes playing
document.location = ‘https://www.yourpage.com’;
}
};function gid(name)
{
return document.getElementById(name);
};
</script>I just copied that in my header and it works.
I hope it can help someone else.
Have a nice day.
Forum: Fixing WordPress
In reply to: redirecting after flash video end?Sorry. Apologies.
Forum: Fixing WordPress
In reply to: music in header?right… ok…
Forum: Themes and Templates
In reply to: dropdown menu, mouse over and page title showingsounds hell. How on hearth do I do that…
Can you direct me somewhere I could learn, or just tell me if I could copy some codes somewhere. Not good with php. well, you know that.
Forum: Themes and Templates
In reply to: dropdown menu, mouse over and page title showingThank you Esmi,
I was looking at the template files, and I was wondering if that would not be what I need to change:
<div id=”header_menu”>
<ul class=”menu” id=”menu”>
<?php$options = get_option(‘mc_options’);
if($options[‘header_menu_type’] == ‘pages’) {
wp_list_pages(‘sort_column=menu_order&depth=0&title_li=&exclude=’ . $options[‘exclude_pages’]);
} else {
wp_list_categories(‘depth=0&title_li=&exclude=’ . $options[‘exclude_category’]);
}
?></div>
Would it?