Robin
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Need help with custom fieldsGreat i am glad it sorted out 🙂
Forum: Networking WordPress
In reply to: Category Feeds on SubsitesHi mika, i know we have some how been on this discussion in lot of posts lately, and i know it is bad for seo, but sometime we dont want seo aspect,
Secondly i have used it and i know u must have used it 100’s of time too,
i dont see it crashing
i am not sure how u have used it in particular, but how autoblog does it for me is it populates my categories on sub site and than (i am assuming it becomes content of that particular site and i have used that content/category post in number of ways to be displayed)can u put a workflow why is it bad other than SEO ?
Forum: Networking WordPress
In reply to: Need help with custom fieldsIt works fine for me all the time 🙁 not sure where the problem is coming for u
if u want to add only two fields its not worth installing woocommerce or marketplace
use a simple shopping cart plguin — http://getshopped.org/Forum: Networking WordPress
In reply to: Need help with custom fieldshmm have you tried following this video
http://www.advancedcustomfields.com/docs/tutorials/creating-and-registering-your-own-field/Forum: Fixing WordPress
In reply to: Trouble getting to admin pageOk
Can you access your ftp ? if yes
login and you would see all your wordpress files, look for a file with name wp-config.php
find
error_reporting(0);
and see if it not exactly what is above..
this is just one of the option to get started.But since u r not computer savvy i would suggest hiring someone to look it for you.
or just the way u installed your wordpress before do it again.Forum: Everything else WordPress
In reply to: eCommerceSince u r based in Australia it could be good to use a kiwi based company http://getshopped.org/ has a amazing eshopping plugin for wordpress, they have a free version you can give it a try.
or you can go in for more commercialized woo themes – woocommerce — great support as such.Forum: Fixing WordPress
In reply to: FTP ErrorYes you can upload your theme through ftp (in wp-content/themes) folder
for the ftp error you should contact your hosting company
as such u should have your
hostname as :
beautywidbrainz.com
username:
password:R u using filezilla or similar software / do you have access to control panel of your server
Forum: Themes and Templates
In reply to: Change theme from Twentytenyes u just have to go to your style.css (line 185)
and instead of float:right
change it to float:left
and that is itcopy and paste and replace
#container {
float: right;
margin: 0px -240px 4px 0px;
width: 100%;
}as such i dont recommend editing the main files — best option is to create a child theme though (but since u dont want to do code 😛 use the method above 🙂 )
Forum: Hacks
In reply to: Styling adminbarFirstly i would not recommend changing the core css files, as the moment u hit update for wordpress your file changes would be lost
use your themes function filefunction link_to_stylesheet() {
?>
<style type=”text/css”>
#wpadminbar {background-color:#FFF;}
</style>
<?php
}
add_action(‘wp_head’, ‘link_to_stylesheet’);?>
Forum: Networking WordPress
In reply to: Need help with custom fieldsI did a project sometime back where i added extra fields if the above doesnt work you can take a cue from this code
[ Moderator note: Please use backticks or the code button for code. It make the code much more readable. ]
add_action( 'show_user_profile', 'extra_user_profile_fields' ); add_action( 'edit_user_profile', 'extra_user_profile_fields' ); function extra_user_profile_fields( $user ) { ?> <h3><?php _e("Extra profile information", "blank"); ?></h3> <table class="form-table"> <tr> <th><label for="gender"><?php _e("Gender"); ?></label></th> <td> <input type="text" name="gender" id="gender" value="<?php echo esc_attr( get_the_author_meta( 'gender', $user->ID ) ); ?>" class="regular-text" /> <span class="description"><?php _e("Enter your Gender."); ?></span> </td> </tr><tr> <th><label for="designation"><?php _e("Designation"); ?></label></th> <td> <input type="text" name="designation" id="designation" value="<?php echo esc_attr( get_the_author_meta( 'designation', $user->ID ) ); ?>" class="regular-text" /> <span class="description"><?php _e("Please enter your designation."); ?></span> </td> </tr></table> <?php } add_action( 'personal_options_update', 'save_extra_user_profile_fields' ); add_action( 'edit_user_profile_update', 'save_extra_user_profile_fields' ); function save_extra_user_profile_fields( $user_id ) { if ( !current_user_can( 'edit_user', $user_id ) ) { return false; } update_user_meta( $user_id, 'gender', $_POST['gender'] ); update_user_meta( $user_id, 'designation', $_POST['designation'] ); }Forum: Networking WordPress
In reply to: Need help with custom fieldsas such with ACF u should not to go and do manual work on functions.php (always had worked perfectly for me)
Someone has suggested this fix try it out
1. Open file – plugins\advanced-custom-fields\core\actions\input_save.php
2. Go to line number “78”
3. Comment out the line like so
//’id’ => null,
4. Save!Dump the SQL
Go to your sites Tools > export (xml)
and copy the folders and do the installation on your new host update the sql, and import the xml file
(While updating sql make sure to properly do find and replace on DB from your old domain name to new ) as wordpress php db uses serialization strings — in lot of cases the theme tends to loose widgets (specially the text) (http://interconnectit.com/124/search-and-replace-for-wordpress-databases/ )http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_Multisite
Forum: Networking WordPress
In reply to: Category Feeds on SubsitesEven though it might be pulling from your main site it would still use the styling of your child site (sub-site) so you would have to fix its css for it or have a common css classes which u can replicate on every sub site
Secondly you could try autoblog from wpmudev.org, see the demo and it might workout in your case
I have used it to do exactly what you are doing, but my posts did;nt had photos so not sure if photos also pass along (they should as such)
Forum: Networking WordPress
In reply to: Need help with custom fieldsThis is because it is not getting saved into database,
i personally use ACF (http://www.advancedcustomfields.com/) they are like custom fields but more powerful and more flexible with good tutorial documentation/wiki to help you setupThis should do the trick for u
.widget.widget_nav_menu {
margin-left: 30px;
}