listblank
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [Polylang] Redirect to index.php if no language is selectedI did this for now, although I’m not sure if it’s correct, I added it to index.php
<?php if(get_queried_object_id() == 0){ global $wp_query; $wp_query->set_404(); status_header( 404 ); get_template_part( 404 ); exit(); } get_header(); ?>
Forum: Plugins
In reply to: [Polylang] Logo per languagein header.php
<?php $lang = get_bloginfo("language"); if ($lang == 'fr-FR') { ?> <img class='logo' src='link-to-file.jpg' width='' height='' alt='logo' /> <?php }elseif ($lang == 'en-EN') { <img class='logo' src='link-to-file-en.jpg' width='' height='' alt='logo' /> <?php }else{ ?> <img class='logo' src='link-to-file.jpg' width='' height='' alt='logo' /> <?php } ?>
Forum: Plugins
In reply to: [VikBooking Hotel Booking Engine & PMS] Not found imagesSorry, got it, thanks
Forum: Plugins
In reply to: [VikBooking Hotel Booking Engine & PMS] Not found imagesThey are not in the plugin archive if you download them now at https://www.ads-software.com/plugins/vikbooking/
Forum: Plugins
In reply to: [VikBooking Hotel Booking Engine & PMS] Not found imagesThese pictures are not in the plugin itself at /site/resources/uploads/ if you download it
functions.php
require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if (is_plugin_active('fluent-support/fluent-support.php')) { function change_fluent_ava(){ return "https://ps.w.org/fluent-support/assets/icon.svg"; } add_filter('fluent_support/get_avatar', 'change_fluent_ava'); }
- This reply was modified 1 year, 10 months ago by listblank.
not working on the archive page in loop
global $post;
echo kk_star_ratings($post>ID);
Viewing 7 replies - 1 through 7 (of 7 total)