spinaker
Forum Replies Created
-
I just found that I haven’t read the question correctly. I’m really sorry for that. So this thread is not relevant to my issue. I guess I have to create new thread. I’m actually trying to remove the hole Personal Info section.
I’m also interested in the very same topic. Is it possible that this is not the case anymore? I’m logged out and I still see the form. Cleared cache, tried in a different browser. I guess there is no option where you can switch off the form?!
Forum: Plugins
In reply to: [Photo Gallery by 10Web - Mobile-Friendly Image Gallery] Remove Google FontsAs I was looking through the code of the latest version of Photo Gallery, I found this part in the plugins/photo-gallery/photo-gallery.php file:
// Google fonts.
require_once(WD_BWG_DIR . ‘/framework/WDWLibrary.php’);
for ($i = 0; $i < count($google_fonts); $i = $i + 120) {
$fonts = array_slice($google_fonts, $i, 120);
$query = implode(“|”, str_replace(‘ ‘, ‘+’, $fonts));
$url = ‘https://fonts.googleapis.com/css?family=’ . $query . ‘&subset=greek,latin,greek- ext,vietnamese,cyrillic-ext,latin-ext,cyrillic’;
wp_enqueue_style(‘bwg_googlefonts_’ . $i, $url, null, null);
}
}
add_action(‘wp_enqueue_scripts’, ‘bwg_front_end_scripts’);So the actual handles are as follow ‘bwg_googlefonts_0’, ‘bwg_googlefonts_120’, ‘bwg_googlefonts_240’, ‘bwg_googlefonts_360’, ‘bwg_googlefonts_480’, ‘bwg_googlefonts_600’.
Forum: Plugins
In reply to: [WP Responsive Menu] Change menu position to below the headerI need to achieve the same thing. I want to locate the menu just in the same container, where I have my main menu. Look like there is no option for that. Similar thing with other plugins.
What I’ve tried was changing the hook for the action that calls the responsive menu.In the file wp-responsive-menu/wp-responsive-menu.php
add_action(‘wp-footer’, ‘wprmenu_menu’, 100);
function wprmenu_menu() {
$options = get_option(‘wprmenu_options’);
if($options[‘enabled’]) :
?>
<div id=”wprmenu_bar” class=”wprmenu_bar”>
<div class=”wprmenu_icon”>….
I changed the hook to ‘genesis_after_header’, in my case thats the hoook associated with the position under the header. Then I had to change a few more things. Like the css for the responsive menu. You must change display:fixed; to display:relative. And a few more changes. As it looks this is not a proper solution, as with every plugin update you gonna loose the changes. So yeah I’ll be greatfull if someone comes with a proper solution or a plugin that has the option to place the resposnive menu button to any placeholder.Forum: Plugins
In reply to: [SrcSet Responsive Images for Wordpress] SrcSet group's attribute scopeThat’s great Eric. Thank you for your response.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] [table “example” not found /]Ок,I’m apologizing for not introducing myself carefully to the plugin. I wanted to use sorting and pagination to my table, and thought that if I use the shortcode the plugin will deliver that functionality.
Anyway, I did that already just using the DataTabel library. But is it possible with TablePress to manage existing tables?Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] [table “example” not found /]Hi, sorry for not being clear. Well, this is a snippet of how my table is generated. I do that in a custom template page and then I call that template. I put the shortcode in that page. Ok, I have to see what is TablePress table.
echo ‘<table id=”example”>’;
echo ‘<thead>’;
echo ‘<tr>’;
echo ‘<th>Order ID</th>’;
echo ‘<th>Client</th>’;
echo ‘<th>Goods</th>’;
echo ‘<th>Status</th>’;
echo ‘<th>Payment Status</th>’;
echo ‘<th>ETA</th>’;
echo ‘</tr>’;
echo ‘</thead>’;
echo ‘<tbody>’;
echo ‘<tr>’;
echo ‘<td>’;
echo ‘$field”;
echo ‘</td>’;
echo ‘<td>’;
echo $client_name;
echo ‘</td>’;
echo ‘<td>’;
echo $product;
echo ‘</td>’;
echo ‘<td>’;
echo $status;
echo ‘</td>’;
echo ‘<td>’;
echo $payment_status;
echo ‘</td>’;
echo ‘<td>’;
echo $date_of_arrival;
echo ‘</td>’;
echo ‘</tr>’;
}
}
echo ‘</tbody>’;
echo ‘</table>’;