Penelope01
Forum Replies Created
-
Further to my previous message – see above
When you look at the galleries page
https://pennypics.com/portfolio/galleries/
you can see that unlike your demo the image grid shows only 2 galleries wide!
How can I sort this?Is there any chance that there could be some sort of instruction manual?
Forum: Plugins
In reply to: [Menu Swapper] Please help – Menu swapper doesn't work on my siteThanks Chris, for having a look at my problem.
I’ll certainly try Conditional menus, but as I am using Artisteer to design my theme this plugin may not work either- none of the others that I tried worked.
Anyway my menus work now and thats the main thing ๐Have a nice day
PenelopeForum: Plugins
In reply to: [Menu Swapper] Please help – Menu swapper doesn't work on my siteThe problem is with artisteer generated themes in the header.php the coding is not standard so the plugin doesn’t swap menus
After much digging I came up with a solution, not elegant but it works.
I put a tag fr on all my french pages.
I added some code to the header.php in my theme where it calls the menu
`
<?php if ( has_tag(fr) ) {echo theme_get_menu(array(
‘source’ => theme_get_option(‘theme_menu_source’),
‘depth’ => theme_get_option(‘theme_menu_depth’),
‘menu’ => ‘frmenu’,
‘class’ => ‘art-hmenu’
)
);
} else {
echo theme_get_menu(array(
‘source’ => theme_get_option(‘theme_menu_source’),
‘depth’ => theme_get_option(‘theme_menu_depth’),
‘menu’ => ‘primary-menu’,
‘class’ => ‘art-hmenu’
)
); };
?>
ยด
where frmenu is the french menu and primary menu is the english menu
and it works !Forum: Plugins
In reply to: [Menu Swapper] Please help – Menu swapper doesn't work on my sitePPs I have snapshots of my menu swapper settings
http://www.musicalpix.com/temp/menuswapper0.jpg
http://www.musicalpix.com/temp/menuswapper1.jpg
http://www.musicalpix.com/temp/menuswapper2.jpg
http://www.musicalpix.com/temp/menuswapper3.jpgForum: Plugins
In reply to: [Menu Swapper] Please help – Menu swapper doesn't work on my siteP.S.here is the contents of header.php on my theme
>
“>
theme_get_option(‘theme_menu_source’), ‘depth’ => theme_get_option(‘theme_menu_depth’), ‘menu’ => ‘primary-menu’, ‘class’ => ‘art-hmenu’ ) ); ?>Hi HMPK
I wanted exaclty the same thing on my website and managed to find a solution, even though it took me a while as I am new to wordpressI used Login with Ajax, formidable pro forms to create the register, my account,change password etc, members to restrict the access to the members area and it all works a treat!
I hope you managed to sort out your problem.
Penelope
Forum: Plugins
In reply to: [New User Approve] Customizing email message bodyHi Josh
Thankyou for the great plugin, it was just what I was looking for.Only one thing I need to do on the approved users e-mail and that is to remove (or change) the link to the wordpress login page under the users login and password. I want them to login via the home page on the website.
so instead of
“http://mysite.com/wp-login.php”
have either
no link at all
or “http://www.mysite.com/”I looked in the plugin code but couldnt see how to do it.
Please can you helpAny suggestions will be gratefully recieved
Many thanks
PenelopeForum: Plugins
In reply to: [Visual Form Builder] 3 column formThanks Matthew,
I’ll try your suggestion and see what happens.Forum: Plugins
In reply to: [Visual Form Builder] Adjust line height/text size for descriptionsHi TJ
Sorry this is not really a reply to your problemI am having the same difficulty with a 3 column forn, changing the CSS to make it look somehow OK, and in view of the lack of response to your problem, I was wondering if you had found another solution or another plugin that will do the job.
Many thanks
Any suggestions will be gratefully recievedForum: Plugins
In reply to: [Visual Form Builder] 3 column formRe-hi
In the visual-form-builder.css file I changed at lines 308 and 317
select.vfb-small{
width:25%;
select.vfb-medium{
width:50%;
to:
select.vfb-small{
width:15%;
select.vfb-medium{
width:30%;
That didnt change anythingSo I then used 100 px for small and 300 px for medium and it couldnt generate the form at all !
OK so there is obviously something that I am missing
Please can you help !
ThanksForum: Fixing WordPress
In reply to: Javascript not working on pageYou could also look for a plugin for adding JS
Many Thanks
You are a genius!
I found a plugin called “Insert JavaScript and CSS” http://ww.wp.xz.cn/plugins/insert-javascript-css/
It works on a single page which is exactly what I was looking for
No messy coding and it worked first time!
๐Forum: Fixing WordPress
In reply to: Javascript not working on pageI’m sorry but we do not support Artisteer themes here
Sorry but I thought that artisteer is only for designing theme templates
Making the website work happens in wordpress. Lots of sites are using javascript, so it follows that there must be a simple way to make them work.
Forum: Fixing WordPress
In reply to: Javascript not working on pageHi again
So I tried adding
wp_enqueue_script(“stores.js”);
underneath wp_enqueue_script(“script.js”); in the functions.php of my theme
and I put the script stores.js in the same directory
This didnt workPlease can you help
Forum: Fixing WordPress
In reply to: Javascript not working on pageHi Esmi
Thanks for the advice – trying to understand, but this is all new to me. I had thought that there would be an easy way to add my java scripts in wordpress !I generated my theme with artisteer. In my function.php file I have something that looks like
wp_enqueue_script(“script.js”);
Question – Is this where I have to add my line
wp_enqueue_script( stores, ‘http://www.go-motion.com/jrmusic/stores.js’ )
or do I have to append the script itself into script.js ?Please can you help?
Forum: Fixing WordPress
In reply to: Javascript not working on pageThankyou for your reply
This was exactly the information that was so confusing
I tried putting
<?php wp_enqueue_script( stores, ‘/stores.js’, ‘false’ ); ?> on my page but it still doesnt work
maybe I need to put this code somewhere else or I made a mistake
If so where?
The theme for the new website was developed using artisteer
Many thanks for your help