Account
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Static - The WordPress Static Site Generator] offline useFor this purpose you can use wget instead with following keys:
wget –recursive –no-clobber –page-requisites –html-extension –convert-links –restrict-file-names=windows –domains https://www.yoursite.url –no-parent https://www.yoursite.url
The “convert links” key converts the links so they can be used locally.
Wget is a *nix tool, but you can find Windows binaries also
- This reply was modified 8 years, 5 months ago by Account.
You can just use any 3rd party forms provider like wufoo that allows embedding their form as iframes or provides JavaScript code for inserting in HTML page.
Forum: Themes and Templates
In reply to: [Fukasawa] Images in pages extend beyond pageI face the same problem but only when I add caption text.
Forum: Plugins
In reply to: [WP-PostRatings] Display rating from time period in the pastok, thanks
Forum: Plugins
In reply to: [WP-PostRatings] Change the URL of entries in widgetFor history, if someone needs to replace the URL in the widget:
/wp-postratings.php – line 1225
`// Post Template Variables
global $wpdb;
$post_link = $wpdb->get_var( $wpdb->prepare( “SELECT meta_value FROM {$wpdb->postmeta} WHERE post_id = %d”, $post_id));
$post_title = get_the_title($post_data);
if ($max_post_title_chars > 0) {
$post_title = snippet_text($post_title, $max_post_title_chars);You should modify the select to wpdb for your needs
Forum: Plugins
In reply to: [WP-PostRatings] Change the URL of entries in widgetThank you!
Forum: Plugins
In reply to: [WP-PostRatings] Translation problem on front-endThank you very much!
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to make post title link to RSS source?Solved by following code in template loop:
<a>get_var("SELECT meta_value FROM $wpdb->postmeta WHERE post_id= '$post->ID'"));?>" title="<?php printf('%s', the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title();?></a>
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to make post title link to RSS source?I found a similar question, but the the solution seems to beoutdated
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to make post title link to RSS source?In fact, I need the function to replace permalink here to fetched article URL
href=”<?php the_permalink();?>
Forum: Themes and Templates
In reply to: [Hueman] Font-awesome issueFixed by modifying .htaccess file
<FilesMatch “.(ttf|otf|eot|woff)$”>
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin “*”
</IfModule>
</FilesMatch>Forum: Themes and Templates
In reply to: [Hueman] Font-awesome icons not showingThe font was not loaded. Fixed by added following to style.css.
@font-face {
font-family: ‘FontAwesome’;
src: url(‘fonts/fontawesome-webfont.eot’);
src: url(‘fonts/fontawesome-webfont.svg#fontawesome-webfont’) format(‘svg’),
url(‘fonts/fontawesome-webfont.eot?#iefix’) format(’embedded-opentype’),
url(‘fonts/fontawesome-webfont.woff’) format(‘woff’),
url(‘fonts/fontawesome-webfont.ttf’) format(‘truetype’);
font-weight: 300;
font-style: normal;
}Forum: Themes and Templates
In reply to: [Hueman] Font-awesome icons not showingMaybe somebody can tell me what files should I change to replace social-networking font-awesome icons in primary sidebar to my custom images? And also how to remove arrows in the upper/main menu (arrows that indicate that there are some submenus)?
Thanks in advance!
Forum: Themes and Templates
In reply to: [Hueman] Font-awesome icons not showingSteps to reproduce the problem.
1) Clear browsers cache
2) Apply hueman theme -> font-awesome icons not shown
3) Open site/wp-admin/ (asadmin) and return back to the site => icons become visible
4) Log out from wordpress (as admin) and clear browser cache => icons are not shown againForum: Themes and Templates
In reply to: [JustWrite] Comments on posts onlyMany thanks for the hint! It works. ??